It is very easy to implement file upload in ASPX, as follows:
private string upLoadFile (System.Web.UI.HtmlControls.HtmlInputFile tFile, string FilePath) {if (tFile.PostedFile.ContentLength> 0) {string strFileName = Path.GetFileName (tFile.PostedFile.FileName); tFile.PostedFile.SaveAs ( Filepath strfilename); return strfilename;} else {return "";}}
But there is a problem, if your accessory size is 4M, then the upload file will report an error, why is it wrong? The reason is that the ASPX default maxRequestLength is 4096KB is 4MB, we need to change the following settings in Web.config, of course the specific value Depending on the actual situation.
... "... ...Tem.WewexecutionTIMEOUT Unit Second