From what i understand session cookies are serverside and not transmitted to the user at all. This means it is safe from tampering (from outside of the server)?
Anyways, from what i can tell POST data is stored in HttpContext.Current.Request.Form. How do i get GET data?
right now i am doing this
HttpContext.Current.Session.Clear();
foreach (var v in HttpContext.Current.Request.Form)
HttpContext.Current.Session.Add(v, HttpContext.Current.Request[v]);
Other then needing to be careful when clearing my session data is this code a good idea or bad idea? I am trying to solve this problem http://stackoverflow.com/questions/1073094/can-i-hold-post-data-in-asp-net-so-i-can-verify-with-captcha