hide the values in query string in ASP.net.

G

Guest

hi
i want to know how to hide the values in query string in ASP.net.
here i want to send the values from one page to another page through query
string with out explicitly visible the values in the query string. i want
the solution with the response.redirect method.

example : www.mysite.com/member.aspx?id=123&name=coco
but i wan the link is www.mysite.com/member.aspx only.

I dont want use Session, or cache.this will make heavy my application

if anybody knows please send me the solution.it's very needed to me.

Thank You
bhavik
 
G

Guest

The only way you can do this is to encrypt and encode the strings passed from
one page to another. .NET framework provides very good support for this
through System.Security.Cryptography namespace.

- Manso
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top