我使用的是Asp .net 3.5 Web Form。 VS 10.
我想在表单中上传文件。但是,我不想要回复帖子。我想在iframe中做这件事。触发FileUpload控件更改事件时,将调用ifrmFileUpload
src。文件上传将在何处发生,lblFile
将显示FileName。
<iframe id="ifrmFileUpload" src="">
<asp:FileUpload runat="server" id="btnFileUpload" />
<asp:label id="lblFile"/>
</iframe>
但我想仅回发iframe。如果可能的话,还有一个HttpHandler文件。喜欢UploadHandler.ashx
public void ProcessRequest(HttpContext context)
{
........ // code here to upload from file
}