일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- javascript
- microsoft
- c#
- attr()
- MS
- 윈도우
- 오라클
- 이클립스
- IIS
- 단축키
- 리포팅서비스
- SSRS
- 엑셀
- replace()
- 태그를 입력해 주세요.
- CONVERT()
- Excel
- 프로시저
- DataGrid
- 마이크로소프트
- 자바스크립트
- aspnet
- Winform
- windows
- oracle
- ASP
- jQuery
- 윈폼
- 비주얼스튜디오
- MSSQL
- Today
- Total
DJ메탈짱™의 Free Style
[ASP.NET] 파일 클릭 시(다운로드) 브라우저에서 바로 열리지 않고 다른이름으로 저장 본문
[ 하이퍼 링크 사용 ]
http://stackoverflow.com/questions/4253299/how-to-open-the-save-as-dialog-on-click-of-the-image
[ Html 헤더(meta태그)에 다운로드 정의하는 방법 ]
[ 자바스크립트 사용 ]
http://dl.dropboxusercontent.com/u/35146/ieSaveAs.html
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<script type="text/javascript" language="javascript" charset="utf-8">
var win;
function check() {
if (win.document.readyState=='complete'){
win.document.execCommand("SaveAs");
win.close();
} else {
window.setTimeout('check();',1000);
}
}
function saveImage() {
win = window.open('keyboard.jpg','win');
window.setTimeout('check();',1000);
}
</script>
</head>
<body>
<input type="button" value="Save Image" onClick="saveImage()" />
</body>
'일(job) > MS(Microsoft)' 카테고리의 다른 글
[WinForm] 사용자 정의 컨트롤, 부모폼, 버튼클릭, ParentForm, UserControl, Modifiers, Public, Private, OfType (0) | 2015.12.21 |
---|---|
[.NET] 정규식(MatchExpression), 앞3자리=영문, 뒤4자리=숫자만 허용. (0) | 2015.12.21 |
[ASP.NET] 파일명,일업로드, 다국어, 한글,영문 확인하기,GetByteCount(),Length (0) | 2015.12.15 |
[ASP.NET] with DuraBoys - DataSet 엑셀로 다운로드하기 (0) | 2015.12.15 |
[ASP.NET] 비주얼스튜디오,VS2010,디자인모드,컨트롤오류 (0) | 2015.12.15 |