W
wzwcn
Unregistered / Unconfirmed
GUEST, unregistred user!
我用Indy10的IdHttpServer写个简单的程序,在它的OnCommandGet事件写代码: procedure TForm3.IdHTTPServer1CommandGet(AContext: TIdContext; ARequestInfo: TIdHTTPRequestInfo; AResponseInfo: TIdHTTPResponseInfo); const s='D:/MyVcl/Test/idISAPIRunner/HTTPServer/Web/index.html'; begin AResponseInfo.ContentType:='text/html'; AResponseInfo.ServeFile(AContext,s); end; 然后通过IE访问它,不知道为什么它不是直接显示页面,而是先出现下载的对话框,点"打开"才显示页面.请问我应该怎么设置它才直接显示页面?我在google上搜好久都没找到答案