I am redirecting page using javascript which is hidden for user by
document.aspnetForm.action="default2.aspx";
document.aspnetForm.submit();
In default2.aspx.cs I want the value from previous page.
I counld not able to use query string due to security reason.
I can assign value only through aspx page so cannot use session.
Go to the complete details ...