Okay, I'm new to web development and I'm just now getting started with asp.net.
I have read all the help files and articles I can find on this, but still have a question. If I want to store a small amount of session information on the client, I know I can use cookies, the ViewState property, Hidden fields, or Query strings. I know that using the ViewState property is more secure. And, I know that the Hidden fields affect the page size.
If it's just a small bit of information that doesn't need to be secured, and performance is roughly the same either way, would it be best to use a Hidden field or the ViewState property. The way I understand it, really the ViewState property does it's thing by implementing a hidden field anyway, right?
Any suggestions or articles on recommendations (other than MSDN, I've perused all of those) would be helpful.
Thanks in advance,
J. Jones
jjonesal@cableone.net
I have read all the help files and articles I can find on this, but still have a question. If I want to store a small amount of session information on the client, I know I can use cookies, the ViewState property, Hidden fields, or Query strings. I know that using the ViewState property is more secure. And, I know that the Hidden fields affect the page size.
If it's just a small bit of information that doesn't need to be secured, and performance is roughly the same either way, would it be best to use a Hidden field or the ViewState property. The way I understand it, really the ViewState property does it's thing by implementing a hidden field anyway, right?
Any suggestions or articles on recommendations (other than MSDN, I've perused all of those) would be helpful.
Thanks in advance,
J. Jones
jjonesal@cableone.net