webmethod中的fileupload控件

时间:2017-12-30 09:48:48

标签: c# asp.net file-upload

我的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。

有什么问题,如何解决?

0 个答案:

没有答案