点击上传按钮后,我正在检查filename
。但它变得空白,并给我错误
对象引用未设置为对象的实例
我不知道为什么即使在上传文件后我也没有获取文件名。
我正在上传.jpg
图片。以下是代码: -
protected void BtnUpload_out_Click(object sender, EventArgs e)
{
string Datafile = "";
HttpPostedFile PF_File;
string Filename = ""; // filename is blank here
if (FileUpload_out.PostedFile.FileName != "") // here I get reference error
{
if (Directory.Exists(Server.MapPath("~/Transactions/FileAttachment/" + hidAttachid.Value + "/VO/" + FileUpload_out.FileName)) == false)
{
Directory.CreateDirectory(Server.MapPath("~/Transactions/FileAttachment/" + hidAttachid.Value + "/VO"));
}}
答案 0 :(得分:0)
AJAX更新面板用于防止页面具有完整的回发。使用更新面板,我们可以进行部分页面回发。部分页面回发执行以下操作
1.提高应用程序的性能
2.减少应用程序的页面加载时间
3.减少应用程序和服务器之间的往返
4.只有网页中需要刷新的部分才能获得回发
我们知道我们可以使用文件上传控件将文件上传到服务器。但是,如果我们在更新面板中使用文件上传控件,则它不起作用。原因是文件上载控件不适用于异步回发。
将此添加到您的表单标记,然后添加触发器,如图所示
<form id="form1" runat="server" method="post" enctype="multipart/form-data" >
.....
</ContentTemplate>
<Triggers>
<asp:PostBackTrigger ControlID = "uploadbuttonID"/>
</Triggers>
</asp:UpdatePanel>
.....