strUA = Request.ServerVariables("HTTP_USER_AGENT")
filename=NAME_KOR+"이력서.doc"
Response.ContentType = "application/msword" ----> 중요 (워드로 변환 할떄.)
Response.ContentType = "application/pdf" ----> 중요 (PDF로 변환 할떄.)
If Instr(strUA, "MSIE") Then
intVersion = CDbl(mid(strUA, Instr(strUA, "MSIE")+5, 3))
If intVersion = 5.5 Then
Response.AddHeader "Content-Disposition","filename=" & FileName
Else
Response.AddHeader "Content-Disposition","inline; filename=" & FileName
End If
End If
'asp' 카테고리의 다른 글
ASP 자동완성 (1) | 2007.05.03 |
---|---|
Binary 데이타를 받아서 server에 화일로 저장시키는 (2) | 2007.05.03 |
SiteGalaxyUpload 컴포넌트 사용법 (0) | 2007.05.03 |
Base64 encode/decode 하기 (패스 워드 적용) (0) | 2007.05.03 |
Base64 인코딩 & 디코딩 (1) | 2007.05.03 |