.NET has built in a key/value method for the ViewState functionality. You [u]must</u> use this methodolgy, or you are going to be writing buggy code till midnight!
Values can be extracted from viewstate in exactly the same way, too.
I forget the syntax, but it is like: ViewState.Add("PageKey", strTmpVar)
|