R
Raheel Hussain
hi guyz.
I want to put encryption for every querystring for my web application.
for that right now i m using a custom function.
can any body tell me if there is some builtin function available in .net
which i can implement.
wht i want is that the query string value should be sent in decrypted
format and on the second page i catch this value and decrypt it and then
use it appropriately.
another problem i m having is that i cant apply encryption function on
the "hyperlink" column of datagrid.
normally in code
'sending
response.redirect "somepage.aspx?id=" & encrypt(value)
'getting
dim strvalue as string = request.querystring("id")
strvalue=decrypt(strvalue)
but in datagrid, i can't find the way to do it.
please also suggest if there is some alternative method to it.
thankx in advance.
I want to put encryption for every querystring for my web application.
for that right now i m using a custom function.
can any body tell me if there is some builtin function available in .net
which i can implement.
wht i want is that the query string value should be sent in decrypted
format and on the second page i catch this value and decrypt it and then
use it appropriately.
another problem i m having is that i cant apply encryption function on
the "hyperlink" column of datagrid.
normally in code
'sending
response.redirect "somepage.aspx?id=" & encrypt(value)
'getting
dim strvalue as string = request.querystring("id")
strvalue=decrypt(strvalue)
but in datagrid, i can't find the way to do it.
please also suggest if there is some alternative method to it.
thankx in advance.