Hello,
You can pass values through the querystring, or in addition, you mentioned the Session; according to MSDN documentation, you can access ASP session variables in .NET through the Session.Contents property, as such:
Session.Contents("Variable") = "THis value"
I don't know about the compatibility between form's values.
Brian
|