다른 내용은 필요 없고// PC로 저장 선택
function download_mail()
{
var sfileName = makeRightName(g_paramURL);
sfileName = sfileName + ".eml";if (navigator.appVersion.indexOf("MSIE 5.5") != -1)
window.open("remote/interreadattach.asp?fileURL=" + escape(g_paramURL) +
"&fileName=" + escape(sfileName));
else
window.location.href = "remote/interreadattach.asp?fileURL=" + escape(g_paramURL) +
"&fileName=" + escape(sfileName);
}
IE 5.5일때는 window.open을
그 이외의 브라우져에서는 location.href를 이용하면 다운로드 처리가 가능하다.
단 IE외의 브라우져에 대한 예외처리는 되지 않은 상태
'Web > JavaScript' 카테고리의 다른 글
| QueryString 공백, 특수문자 자바스크립트 처리 (0) | 2007/12/05 |
|---|---|
| JavaScript Caps Lock (1) | 2007/11/15 |
| Javascript - 간단한 DownLoad 스크립트 (0) | 2007/11/05 |
| Javascript window.showModalDialog() (0) | 2007/11/03 |
| Window size and scrolling (0) | 2007/09/18 |
| HTML WYSIWYG Editor를 만들기 위한 기본적인 사용법 (0) | 2007/08/23 |
이 포스팅이 도움이 되었다면 구글에서 관련 정보를 찾아 보세요 ^^

Prev



