'Dev Language > JAVASCRIPT' 카테고리의 다른 글
script 암호화 encrypted (0) | 2015.02.24 |
---|---|
타이머 (0) | 2015.02.24 |
숫자 야구 (0) | 2015.02.24 |
기본 Text 에디터 (0) | 2015.02.24 |
스톱워치 (0) | 2015.02.24 |
script 암호화 encrypted (0) | 2015.02.24 |
---|---|
타이머 (0) | 2015.02.24 |
숫자 야구 (0) | 2015.02.24 |
기본 Text 에디터 (0) | 2015.02.24 |
스톱워치 (0) | 2015.02.24 |
타이머 (0) | 2015.02.24 |
---|---|
달팽이 for문 (0) | 2015.02.24 |
기본 Text 에디터 (0) | 2015.02.24 |
스톱워치 (0) | 2015.02.24 |
키보드 키 값 알아내기 (0) | 2015.02.24 |
달팽이 for문 (0) | 2015.02.24 |
---|---|
숫자 야구 (0) | 2015.02.24 |
스톱워치 (0) | 2015.02.24 |
키보드 키 값 알아내기 (0) | 2015.02.24 |
실시간 표준시간 보기 (0) | 2013.01.24 |
달팽이 for문 (0) | 2015.02.24 |
---|---|
숫자 야구 (0) | 2015.02.24 |
기본 Text 에디터 (0) | 2015.02.24 |
키보드 키 값 알아내기 (0) | 2015.02.24 |
실시간 표준시간 보기 (0) | 2013.01.24 |
달팽이 for문 (0) | 2015.02.24 |
---|---|
숫자 야구 (0) | 2015.02.24 |
기본 Text 에디터 (0) | 2015.02.24 |
스톱워치 (0) | 2015.02.24 |
실시간 표준시간 보기 (0) | 2013.01.24 |
protected void btnExcel_Click(object sender, EventArgs e)
{
DataSet ds = Admin.getExcel(txtSDate.Text, txtEDate.Text, txtIdno.Text, rbtSelect.SelectedValue.ToString());
string fileTime = DateTime.Now.ToShortDateString().Replace("-", "");
try{
// 기존 버퍼내용 제거
HttpContext.Current.Response.Clear();
HttpContext.Current.Response.Buffer = true;
// 파일네임 지정
HttpContext.Current.Response.AddHeader("content-disposition", "attachment;filename=" + fileTime + ".xls");
// 파일타입(데이터형식) 지정
HttpContext.Current.Response.ContentType = "application/vnd.ms-excel";
// 문자셋 지정
HttpContext.Current.Response.Charset = "euc-kr";
HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.GetEncoding("euc-kr");
//HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.GetEncoding("utf-8");
//this.EnableViewState = false;
// 문자열 기록 개체 인스턴스 생성
System.IO.StringWriter stringWriter = new System.IO.StringWriter();
// html 표현 방식으로 변환
System.Web.UI.HtmlTextWriter htmlWriter = new HtmlTextWriter(stringWriter);
// 엑셀생성할 새로운 그리드뷰 생성
GridView makeGV = new GridView();
// 생성된 데이터그리드 디자인
makeGV.HeaderStyle.HorizontalAlign = HorizontalAlign.Center;
makeGV.HeaderStyle.BackColor = System.Drawing.Color.FromName("#E5EAEE");
makeGV.RowStyle.HorizontalAlign = HorizontalAlign.Center;
// 그리드뷰에 새 데이터 바인드
makeGV.DataSource = ds;
makeGV.DataBind();
for (int i = 0; i < makeGV.Rows.Count; i++)
{
for (int j = 0; j < ds.Tables[0].Columns.Count; j++)
{
makeGV.Rows[i].Cells[j].Style.Add("mso-number-format", "\\@"); // 숫자컬럼정의
}
}
// 엑셀 Export
makeGV.RenderControl(htmlWriter);
HttpContext.Current.Response.Write(stringWriter.ToString());
HttpContext.Current.Response.End();
stringWriter.Flush();
stringWriter.Close();
htmlWriter.Flush();
htmlWriter.Close();
}
catch (Exception ex)
{
}
}
윈도우 플랫폼 체크 (0) | 2015.12.31 |
---|---|
Mac Address Changer(맥 어드레스 변경) (0) | 2015.12.30 |
.NET Decompile (닷텟 디컴파일) (0) | 2015.06.04 |
사운드 플레이,스톱 (0) | 2015.02.24 |
숫자체크,Right,Left,Mid 자르기 (0) | 2015.02.24 |
Audio _sound = null;
string soundPath = @"sound/e.wav";
_sound = new Audio(soundPath);
if (_sound.Playing)
{
_sound.Stop();
_sound.Play();
}
else
{
_sound.Play();
}
윈도우 플랫폼 체크 (0) | 2015.12.31 |
---|---|
Mac Address Changer(맥 어드레스 변경) (0) | 2015.12.30 |
.NET Decompile (닷텟 디컴파일) (0) | 2015.06.04 |
엑셀 exprot (0) | 2015.02.24 |
숫자체크,Right,Left,Mid 자르기 (0) | 2015.02.24 |
private bool IsNumeric(string text)
{
return System.Text.RegularExpressions.Regex.IsMatch(text, "^\\d+$");
}
Left
public string Left(string Text, int TextLenth)
{
string ConvertText;
if (Text.Length < TextLenth)
{
TextLenth = Text.Length;
}
ConvertText = Text.Substring(0, TextLenth);
return ConvertText;
}
Right
public string Right(string Text, int TextLenth)
{
string ConvertText;
if (Text.Length < TextLenth)
{
TextLenth = Text.Length;
}
ConvertText = Text.Substring(Text.Length - TextLenth, TextLenth);
return ConvertText;
}
Mid
public string Mid(string Text, int Startint, int Endint)
{
string ConvertText;
if (Startint < Text.Length || Endint < Text.Length)
{
ConvertText = Text.Substring(Startint, Endint);
return ConvertText;
}
else
return Text;
}
윈도우 플랫폼 체크 (0) | 2015.12.31 |
---|---|
Mac Address Changer(맥 어드레스 변경) (0) | 2015.12.30 |
.NET Decompile (닷텟 디컴파일) (0) | 2015.06.04 |
엑셀 exprot (0) | 2015.02.24 |
사운드 플레이,스톱 (0) | 2015.02.24 |
간단하게 PHP 웹서버를 가동후 집어넣어서 사용하면된다
PHP 문자열 인코딩 utf8,euc-kr 펑션 (0) | 2015.06.02 |
---|---|
PHP 메일 보내기 (0) | 2015.06.02 |
PHP 배열 사용 (0) | 2015.06.02 |
MYSQL 단일 파일 웹접속용 (0) | 2013.01.24 |
PHP 내부 함수 (0) | 2013.01.24 |
PHP 문자열 인코딩 utf8,euc-kr 펑션 (0) | 2015.06.02 |
---|---|
PHP 메일 보내기 (0) | 2015.06.02 |
PHP 배열 사용 (0) | 2015.06.02 |
QR 코드 생성기 (0) | 2015.02.16 |
PHP 내부 함수 (0) | 2013.01.24 |
<SCRIPT>
var i=0;
function clockF()
{
today = new Date() ;
i=i+1000;
servertime=<?=time()?>*1000;
processtime=servertime+i;
today.setTime(processtime);
document.loginfrm.clock.value = today.getYear() + "-" + (today.getMonth()+1) + "-" + today.getDate() + " "+today.getHours() + ":" + today.getMinutes() + ":" + today.getSeconds();
//상단의 .toString().slice(-3,-1)는 (JavaScript 1.3) (JScript 3.0) 에서 today.getMiliseconds() 로 표시될수 있습니다.
}
setInterval('clockF()' , 1000) ;
</script>
<?
echo ("<table width=\"195\" align=center border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bordercolorlight=#C6CFCE bordercolordark=white>
<tr>
<td height=5></td>
</tr>
<tr><form name=\"loginfrm\">
<input type=text name=clock size=22 style=\"text-align:center;border:none;color:#2080A8\" readonly></td>
</tr></form>
</table>");
?>
달팽이 for문 (0) | 2015.02.24 |
---|---|
숫자 야구 (0) | 2015.02.24 |
기본 Text 에디터 (0) | 2015.02.24 |
스톱워치 (0) | 2015.02.24 |
키보드 키 값 알아내기 (0) | 2015.02.24 |
echo "$_SERVER[DOCUMENT_ROOT] : 현재사이트가 위치한 서버상의 위치"; echo "$_SERVER[HTTP_ACCEPT_ENCODING] : 인코딩방식"; echo "$_SERVER[HTTP_ACCEPT_LANGUAGE] : 언어"; echo "$_SERVER[HTTP_USER_AGENT] : 현사이트접속한 사람의 환경"; echo "$_SERVER[REMOTE_ADDR] : 현사이트접속한 사람의 아이피"; echo "$_SERVER[SCRIPT_FILENAME] : 실행되고있는 위치와 파일명"; echo "$_SERVER[SERVER_NAME] : 사이트의 도메인"; echo "$_SERVER[SERVER_PORT] : 사용하는 포트"; echo "$_SERVER[SERVER_SOFTWARE] : 서버의 소프트웨어 환경"; echo "$_SERVER[GATEWAY_INTERFACE] : CGI정보"; echo "$_SERVER[SERVER_PROTOCOL] : 사용된서버 프로토콜"; echo "$_SERVER[REQUEST_URI] : 현재페이지의 주소에서 도메인제외"; echo "$_SERVER[PHP_SELF] : 현재페이지의 주소에서 도메인과 념겨지는 값 제외";
PHP 문자열 인코딩 utf8,euc-kr 펑션 (0) | 2015.06.02 |
---|---|
PHP 메일 보내기 (0) | 2015.06.02 |
PHP 배열 사용 (0) | 2015.06.02 |
QR 코드 생성기 (0) | 2015.02.16 |
MYSQL 단일 파일 웹접속용 (0) | 2013.01.24 |