I have the following situation... In a certain View, the user must select the initial hour, the final hour and the weekday. But, I can't save this informations to DB 'cause I need to save my whole page and I need the primary key of the primary table, but that's not the point.

So, while I don't save these data to DB, I'm saving to a Session. I was told to save to a cookie, but it appears that cookies have a size limit. So, I'm saving to a Session.

Buuuut, I was also told that I could save these informations (hours and weekday) to the user page, simulating a ASP.NET ViewState...

Does anyone know how to do this?? Does anyone know how to save temporarily these data withou using cookie or Session??

Thanks!!

link|improve this question

72% accept rate
Why the restriction on not using the Session? I use the Session to store the output of the "steps" of a multi-step wizard. – tvanfosson Mar 21 '09 at 16:09
feedback

4 Answers

up vote 17 down vote accepted

Hidden input fields won't help?

<%= Html.Hidden(...) %>

Update (serializing an object to base64):

var formatter = new BinaryFormatter();
var stream = new MemoryStream();
formatter.Serialize(stream, myObject); // myObject should be serializable.
string result = Convert.ToBase64String(stream.ToArray());

When you want to fetch it back:

var formatter = new BinaryFormatter();
var stream = new MemoryStream(Convert.FromBase64String(hiddenFieldValue));
var myObject = (MyObjectType)formatter.Deserialize(stream);

Make sure you validate the data stored in the field when you use it as the client might change it. ViewState takes care of this automatically.

Side note: ASP.NET uses LosFormatter instead of BinaryFormatter to serialize ViewState as it's more efficient or ASCII based serialization. You might want to consider that too.

link|improve this answer
I'm using hidden fields to some things... but how can I save a list of objects to a hidden field?? – AndreMiranda Mar 21 '09 at 15:50
Binary serialize the object and convert the byte[] to base64 string. – Mehrdad Afshari Mar 21 '09 at 15:53
How can I do this? – AndreMiranda Mar 21 '09 at 15:56
Can you give me an example? – AndreMiranda Mar 21 '09 at 15:57
Mehrdad, I've tried to do that but threw an error saying that my entity is not marked as serializable. I'm using LINQ to SQL. – AndreMiranda Mar 21 '09 at 16:27
show 22 more comments
feedback

TempData["MyData"], mind you this will only last one round trip.

link|improve this answer
feedback

You could save a javascript array on the client... and then transmit all the information when the user ultimately saves.

You have to work a little more, but in the end it pays off.

I heavily use jQuery to do stuff like that, it's easier than it seems.

link|improve this answer
Juan, I'm also using jQueryin the project. The problem is that this data is saving to a Session and I'm using jQuery Flexigrid to show them. My Session is feeding Flexigrid... – AndreMiranda Mar 21 '09 at 16:07
feedback

If you just want to save the data for that request and the next request I'd recommend using Tempdata, else I'd recommend using Mehrdad`s answer.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.