| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | 31 |
- 프렌치프레스
- 아라비카
- 태그를 입력해 주세요.
- 여행
- KO
- 커피
- 로부스타
- NGUI
- Unity
- vbscript
- 제주도
- 리베리카
- KnockoutJS
- 함수
- Android
- 템플릿
- xamarin.android
- fso
- 커피블로그
- xamarin
- asp
- 커피풍미
- shared
- ServerVariables
- Classic ASP
- 드립 커피
- xamarin.forms
- 커피역사
- 원두
- 자마린
- Today
- Total
개발人
1. 쌍따옴표 Replace([변수명], char(34), """) 2. 홑따옴표Replace([변수명], "''", "'")
1. 폴더 생성 Dim spath : spath = Server.mapPath("경로") ' 우선 경로를 지정해 준다. Dim fso Set fso = Server.CreateObject("Scripting.FileSystemObject") Dim folder : folder = "경로" ' 폴더 생성 fso.CreateFolder(folder) ' 폴더에 파일이 존재하는지의 여부 판단 if (fso.FileExists(spath & folder)) then -- 내용 -- end if Set fso = Nothing 2. 폴더 이름 변경 Dim strDirold : strDirold = 기존폴더명 Dim strFname : strFname = 변겅폴더명 If objFs.FolderExists(strDi..
방법1 Response.Buffer = True Response.ContentType = "Application/vnd.ms-excel" Response.AddHeader "파일명.xls" 방법2 Response.ContentType = "application/x-csv" Response.AddHeader "Meta", "charset='euc-kr'" Response.AddHeader "Content-disposition", attachment;filename="파일명.xls"
MS에서 권장하는 캐쉬소멸 방법은 다음과 같습니다. Response.AddHeader "Pragma", "No-Cache" Response.Expires = 0 Response.CacheControl = "Private" 일반적으로 캐쉬가 발생하는 장소는 모두 세 곳 입니다. 브라우져, IIS ISAPI, 프록시 서버 입니다. 그래서 이 세곳 모두 처리를 해주면 그나마 조금 효력이 있습니다. Response.AddHeader "Pragma", "No-Cache" -> HTML 의 메타태그에서 처리하는 것과 동일합니다. Response.Expires = 0 -> SAP 의 ISAPI 캐쉬를 막습니다. Response.CacheControl = "Private" -> 프록시 캐쉬를 제어합니다. 그리고 결정적..