My code is work well but i want to send "Item" and "Mode" in encrypted form.any built in method in asp?if not plz suggest alternative solution.

string url = "QueryStringRecipient.aspx?";
url += "Item=" + lstItems.SelectedItem.Text + "&";
url += "Mode=" + chkDetails.Checked.ToString();
Response.Redirect(url);
link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

Encrypted or encoded?

To encode strings there is HttpServerUtility.UrlEncode

public string UrlEncode(
    string s
)

Parameters

s
    Type: System.String
    The text to URL-encode.

Return Value

Type: System.String
The URL-encoded text.

To decode HttpServerUtility.UrlDecode

public static string UrlDecode(
    string str
)

Parameters

str
    Type: System.String
    The string to decode.

Return Value

Type: System.String
A decoded string.
link|improve this answer
how to decript and catch real value? – Shree Jul 24 '11 at 16:09
@Shree HttpServerUtility.UrlDecode – BrunoLM Jul 24 '11 at 16:12
thanks a lot i got a soln. – Shree Jul 24 '11 at 16:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.