Click here to Skip to main content
15,906,081 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to pass the string which is in encrypted format to another page by using querystring in asp.net...

assume we have two strings..
if i pass one string means that parameter wants to send and then the appropriate page would be open...
Posted
Updated 12-Feb-14 20:09pm
v2
Comments
JoCodes 13-Feb-14 2:12am    
Can you make this bit clear "f i pass one string means that parameter wants to send and then the appropriate page would be open"?
The14thNoah 13-Feb-14 3:08am    
are you asking to how to encrypt the string then pass as query string?

1 solution

Try this.. but be aware for query string length as string length increases after incrypted.
Other wise use use other state management techniques
C#
Response.redirect("otherpage.aspx?Str="+your encrypted string)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900