Click here to Skip to main content
15,886,137 members
Articles / Web Development / ASP.NET
Tip/Trick

How to Maintain FileUpload Control’s State after PostBack

Rate me:
Please Sign up or sign in to vote.
4.86/5 (35 votes)
17 Aug 2010CPOL1 min read 305.5K   13   44
How to Maintain FileUpload Control’s State after PostBack

Introduction


Once I was trying to create a page it has two file upload controls and many other fields and around 30 post backs. Once user select files in file upload controls and in any selection when page’s post back event occurs, file upload control loose it’s value. It was very annoying situation for me to maintain the state of FileUpload Control. I search around so many articles and sites but didn't get any fixed solution. Then I decided to do it myself and publish for other developers. This is very common problem with many developers.


About ASP.Net's File Upload Control


File upload control has a text box and a browse button. When a file is selected, on PostBack PostedFile property gets initilized with HttpPostedFile object for the file. As we know that http request can't maintain state, and PostedFile is initilized with HttpPostedFile Object so it loose it's state. PostedFile property can be used to get information about file e.g. ContentLength, Content Type, FileName, InputStream. It has also a method SaveAs to store file on disk. You can read more about it on MSDN. To maintain the length of solution I will focus to code snippet.


How do we Achieve


I have seen so many options available, but many of them are not working or need too much effort. How can we do this with minimal efforts? Idea is Session Object. As we know session object can store any object and in case of OutProc/State Server Serializable Object only. So idea is very simple store fileupload object in session and in the post back get the values back from it. Use this code in Page_Load.


C#
//If first time page is submitted and we have file in FileUpload control but not in session
// Store the values to SEssion Object
if (Session["FileUpload1"] == null && FileUpload1.HasFile)
{
    Session["FileUpload1"] = FileUpload1;
    Label1.Text = FileUpload1.FileName;
}
// Next time submit and Session has values but FileUpload is Blank
// Return the values from session to FileUpload
else if (Session["FileUpload1"] != null && (! FileUpload1.HasFile))
{
    FileUpload1 = (FileUpload) Session["FileUpload1"];
    Label1.Text = FileUpload1.FileName;
}
// Now there could be another sictution when Session has File but user want to change the file
// In this case we have to change the file in session object
else if (FileUpload1.HasFile)
{
    Session["FileUpload1"] = FileUpload1;
    Label1.Text = FileUpload1.FileName;
}

Conclusion


This is very simple and effort less solution. Does not require any extra effort.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader Interglobe Technologies
United States United States
Hi I am chirantan upadhyay. I always like to do R&D on MS Technology and search newer and newer things. I always think something typical then try to make that possible in Code. I am B.Sc.,C-DAC,MCTS-Sharepoint,Brainbench ASP.Net and Brainbench C# Certified.
I like to have fun in Nature and Adventurous things like river rafting, rock climbing, and rippling.

Comments and Discussions

 
GeneralMy vote of 5 Pin
Mlsoun17-Sep-12 13:01
Mlsoun17-Sep-12 13:01 
GeneralRe: My vote of 5 Pin
Chirantan Upadhyay25-Sep-12 23:05
Chirantan Upadhyay25-Sep-12 23:05 
GeneralRe: My vote of 5 Pin
mathewtinu20-Feb-13 23:06
mathewtinu20-Feb-13 23:06 
GeneralMy vote of 5 Pin
Member 787890413-Sep-12 6:18
Member 787890413-Sep-12 6:18 
GeneralRe: My vote of 5 Pin
Chirantan Upadhyay25-Sep-12 23:06
Chirantan Upadhyay25-Sep-12 23:06 
GeneralReason for my vote of 1 its not working... Pin
karthickbilla22-Feb-12 2:54
karthickbilla22-Feb-12 2:54 
GeneralRe: Reason for my vote of 1its not working... Pin
Member 86976878-Apr-12 21:57
Member 86976878-Apr-12 21:57 
Generalwhere I paste this code Pin
Parveen Rathi24-Jan-12 8:01
Parveen Rathi24-Jan-12 8:01 
where I paste this code
GeneralRe: you can paste in page load event Pin
Chirantan Upadhyay8-Feb-12 2:03
Chirantan Upadhyay8-Feb-12 2:03 
GeneralRe: you can paste in page load event Pin
mathewtinu20-Feb-13 23:07
mathewtinu20-Feb-13 23:07 
GeneralIn the code, what is Label1? Pin
Michael B. Elkins5-Jan-12 3:08
Michael B. Elkins5-Jan-12 3:08 
GeneralRe: It's a label placed some where in your aspx page. this will ... Pin
Chirantan Upadhyay8-Feb-12 2:02
Chirantan Upadhyay8-Feb-12 2:02 
Generalnot working in my condition. I hav Update Panel for a Page, ... Pin
monishafriends15-Nov-11 20:05
monishafriends15-Nov-11 20:05 
GeneralRe: not working in my condition.I hav Update Panel for a Page,... Pin
nagesh kumar verma18-Nov-13 3:53
nagesh kumar verma18-Nov-13 3:53 
GeneralReason for my vote of 1 Reason: Storing FileUpload in Sessio... Pin
HaBiX15-Nov-11 0:20
HaBiX15-Nov-11 0:20 
Generalthanks... helped me a lot.... Pin
Jephunneh Malazarte2-Jun-11 0:24
Jephunneh Malazarte2-Jun-11 0:24 
GeneralReason for my vote of 5 This is an excellent piece of inform... Pin
Member 232293624-Mar-11 1:47
Member 232293624-Mar-11 1:47 
GeneralReason for my vote of 5 Nice little way out for an annoying ... Pin
anilanand23-Mar-11 19:46
anilanand23-Mar-11 19:46 
GeneralReason for my vote of 5 This is something I am looking for o... Pin
Yatindra singh23-Mar-11 1:29
Yatindra singh23-Mar-11 1:29 
GeneralRe: Thanks Pin
Chirantan Upadhyay23-Mar-11 1:46
Chirantan Upadhyay23-Mar-11 1:46 
GeneralReason for my vote of 4 good Pin
hemal_kiran2-Feb-11 18:10
hemal_kiran2-Feb-11 18:10 
GeneralReason for my vote of 5 its helped me. nice trick and explai... Pin
shameerpv27-Sep-10 19:34
shameerpv27-Sep-10 19:34 
GeneralThanx a lot Pin
shameerpv27-Sep-10 19:33
shameerpv27-Sep-10 19:33 
GeneralReason for my vote of 4 its really good. Pin
anilkumarg84@gmail.com18-Aug-10 0:02
anilkumarg84@gmail.com18-Aug-10 0:02 
GeneralReason for my vote of 5 good trick Pin
Pranay Rana17-Aug-10 1:58
professionalPranay Rana17-Aug-10 1:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.