// &FilePath ⇒ ダウンロードするファイルのパス。ファイル名まで含む
// &DownLoadFileName ⇒ ダウンロードダイアログに表示されるファイルの名前
&HttpResponse.AddFile(&FilePath)
&HttpResponse.AddHeader('Content-Type','application/download')
&HttpResponse.AddHeader('Content-Disposition','attachment;filename=' + &DownLoadFileName)
Main program = True Call protocol = HTTP