본문 바로가기

분류 전체보기288

Excel 변환 Response.ContentType="application/vnd.ms-excel" Response.CacheControl = "public" Response.AddHeader "Content-Disposition", "attachment;filename=map.xls" 참조사이트http://agoric.com/sources/software/htmltoExcel mso-number-format:\@ text mso-number-format:"0\.000" 3 decimals mso-number-format:\#\,\#\#0\.000 comma separators (and 3 decimals) mso-number-format:"mm\/dd\/yy" Date format mso-number-format:".. 2009. 11. 21.
sql의 음표 표시 삭제 ' strLine= replace(strLine, chr(-23844), "") ' strLine= replace(strLine, vbCrLf, "") ' strLine= replace(strLine, chr(13)&chr(10), "") strLine= replace(strLine, chr(13), "") 2009. 11. 21.
[asp]업데이트, 인서트 퍼포먼스 asp상에서 데이타를 업데이트 하거나 또는 insert하는 경우 일반적으로 excute 메소드를 사용하여 다음과 같이 합니다. sql = "insert into mytable values("1", "2")" objconn.execute sql 하지만 이렇게 사용하는 경우 우리가 넘겨받는 값은 없지만 우리가 모르는 사이에 ado는 하나의 비어있는 레코드셋을 생성하지요. 업데이트와 인서트가 빈번히 일어 난다면 이것이 웹의 퍼포먼스를 떨어뜨리는 원인이 될수도 있습니다. 이때 레코드셋 을 생성시키지 않으려면 다음과 같이 하면 됩니다. const adExecuteNoRecords = 128 sql = "insert into mytable values("1", "2")" objconn.execute sql, ,ad.. 2009. 11. 21.
숫자요일을 문자요일로 표현하기 올려주신 부분중에서.. Select Case WeekDay (ToDate) Case 1 ToWeekDay = "일" Case 2 ToWeekDay = "월" Case 3 ToWeekDay = "화" Case 4 ToWeekDay = "수" Case 5 ToWeekDay = "목" Case 6 ToWeekDay = "금" Case 7 ToWeekDay = "토" End Select 이 부분은.. ToWeekDay = weekdayname(weekday(ToDate), true) 로 하시면 더 간단해져요... 단 OS의 셋팅에 따라서 월화수... 이렇게 나올수도 있고 Mon, Tue... 이런식으로 나올수도 있고 2009. 11. 21.
커뮤니티 메뉴 act 파일 "next%> New Document 2009. 11. 21.
커뮤니티 메뉴 설정 추가수정1.1 1번째창회원게시판자유게시판스텝게시판회원자료실방명록추가▶▶◀◀삭제2번째창▲ ▼ 2009. 11. 21.
div 그라이데이션 Creating Gradients in IE 5.5 The Gradient Filter allows for color gradients to be rendered on the client side, at the resolution of the display, without the need to author images that contain a pre-determined gradient at a fixed resolution. The gradients can also contain transparency values as part of the color definition, enabling content authors to create interesting visual effects. The color .. 2009. 11. 21.
asp와 저장프로시저 쉽게 이용하기 CREATE PROC sp_nickname_art_bbs @m_id varchar(30), AS DECLARE @SQL VARCHAR(1000) SET @SQL ='select m_nickname,m_email from member where m_id='+@m_id+'' EXEC (@SQL) 로 sp를 작성하고 asp에서 해당값을 부를때 2009. 11. 21.
반응형