2008-05-19から1日間の記事一覧

ファイルのダウンロード

ボタンを押下するとファイルをダウンロードするサンプル download.jsp <html> <script language='javascript'> function fncDownLoad(){ document.form1.submit(); } </script> <form name ="form1" action="/harada/DownLoad" method="post"> <body> ダウンロードはこちら↓<br> <input type='button' value='download' onclick='fncDownLoad()'/> </body> </form></html>