I am in a situation where I want to set value to a variable from an asp page and retrieve this variable value in aspx page .I understand sending the values through querystring
is not a best option.
Please help me .
I am in a situation where I want to set value to a variable from an asp page and retrieve this variable value in aspx page .I understand sending the values through querystring
is not a best option.
Please help me .
It is better to encrypt the value and send it in querystring.
or
if the value is based on loggedin user or role, you can save it in database and retrieve it in other page using the same user or role.