我的aspx代码。
<asp:FileUpload runat="server" ID="file_PurchesItems" />
我的c#代码。
string Fpurchesitems = string.Empty;
HttpPostedFile fileup = HttpContext.Current.Request.Files["file_PurchesItems"];
Fpurchesitems = "flinvoice_" + DateTime.Now.Date.ToString("dd_MM_yyyy") + "_" + fileup.FileName.ToString();
fileup.SaveAs(HttpContext.Current.Server.MapPath("Images1/")+ Fpurchesitems);
但我得到的httppostedfile为null。
有什么问题,如何解决?