您的位置:首页 > 其它

在updatepanel面板中使用fileupload上传图片

2011-02-04 01:44 423 查看

By default, FileUpload control will not work inside an UpdatePanel control for uploading files using Asynchronous postback. This is because, the file uploading and file manipulations is restricted by default in client side for security reasons. Hence it is not possible to upload files using asynchronous postback in UpdatePanel.

To upload files inside UpdatePanel control we need to rely upon a standard postback i.e. we need to set the button that is uploading the file to be PostBack trigger instead of AsyncPostBack trigger. This will initiate a normal postback whenever we click the upload button and it is possible to upload the file.

Refer the below code for clear understanding,

<asp:UpdatePanel ID="UpdatePanel1" runat="server">

<ContentTemplate>

<asp:FileUpload ID="fuUpload" runat="server" />

<asp:Button ID="btnUpload" runat="server" OnClick="btnUpload_Click" Text="Upload" />

</ContentTemplate>

<Triggers>

<asp:PostBackTrigger ControlID="btnUpload" />

</Triggers>

</asp:UpdatePanel>

protected void btnUpload_Click(object sender, EventArgs e)

{

string filename = System.IO.Path.GetFileName(fuUpload.FileName);

fuUpload.SaveAs("C:\temp" + filename);

}

To simulate an AJAX file upload we can use iframes. In this approach, the page that is contained in the iframe will contain the FileUpload control and it will be posted with a normal postback to the server and hence provides a feeling like AJAX request. We will see about this in future code snippets.

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐