IFrame asp .net中的文件上传

时间:2014-05-12 09:57:55

标签: asp.net iframe file-upload

我使用的是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
}

0 个答案:

没有答案
相关问题