"asp:fileupload" control is not working
-
Hi coders, I am working in .NET Framwork 3.5 rightnow. I am using "asp:fileupload" control to upload files on server on one of my page. but what's happening is: first I select any file through 'FileUpload' control, then when my page goes through "PostBack" event (that is when I change something else after selecting file), the control is reset to its null value and at submit I am not getting any file to save. Please help me to understand if I am missing something. Thanks,
Anand Desai Developer Atharva Infotech
-
Hi coders, I am working in .NET Framwork 3.5 rightnow. I am using "asp:fileupload" control to upload files on server on one of my page. but what's happening is: first I select any file through 'FileUpload' control, then when my page goes through "PostBack" event (that is when I change something else after selecting file), the control is reset to its null value and at submit I am not getting any file to save. Please help me to understand if I am missing something. Thanks,
Anand Desai Developer Atharva Infotech
Fileupload control will not persist value across postbacks. User need to select the file again.
Navaneeth How to use google | Ask smart questions
-
Hi coders, I am working in .NET Framwork 3.5 rightnow. I am using "asp:fileupload" control to upload files on server on one of my page. but what's happening is: first I select any file through 'FileUpload' control, then when my page goes through "PostBack" event (that is when I change something else after selecting file), the control is reset to its null value and at submit I am not getting any file to save. Please help me to understand if I am missing something. Thanks,
Anand Desai Developer Atharva Infotech
Any chance that your asp:FileUpload control is placed within an asp:UpdatePanel control? If so, you will need to add some code to accomodate the Ajax postback. Do a search on ASP FileUpload and UpdatePanel and you will find numerous solutions that will work.