My Developer Memo
開発に関する覚え書き
Latest Entries
Recent Comments
Search this site
Categories
Archives
Links
Syndicate this site
RSS1.0
Atom0.3
Powered by
Serene Bach 2.23R
<< Microsoft 開発用ダウンロードリスト
|
main
|
[VS2008]開発用画像ライブラリ >>
2008/03/19 (水)
●
[ASP.NET]ファイルダウンロード
ASP.NETの画面からファイルダウンロードさせるとき
ResponseのPush方法
With Response .Clear() .ContentType = "application/Octet-Stream" .AddHeader("Content-Disposition", "attachment;filename=""" & strFileName & """") ' 既存ファイルをPushするとき .WriteFile(strFile) ' 文字列を直接Pushするとき '.Write(strString) .End() End With