ASP.NET MVC3 How to Persist File Upload Data Across Multiple Requests Without Saving File to Disk?

Once you parse the CSV file into a model you could store this model into the Session so that if the user chooses "Yes" you would fetch the model from the session and persist it to the database. If you don't want to store large quantities of data into the session you could always save the model into some temporary file on disk and store only the path to this temporary file into the Session so that you could retrieve it later.

The best non-disk persistent storage in ASP.net applications is the runtime cache.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions