0

我的代码运行良好,但我想以加密形式发送“项目”和“模式”。asp 中的任何内置方法?如果不是,请建议替代解决方案。

string url = "QueryStringRecipient.aspx?";
url += "Item=" + lstItems.SelectedItem.Text + "&";
url += "Mode=" + chkDetails.Checked.ToString();
Response.Redirect(url);
4

2 回答 2

1

加密还是编码?

要对字符串进行编码,有HttpServerUtility.UrlEncode

public string UrlEncode(
    string s
)

参数

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

返回值

Type: System.String
The URL-encoded text.

解码HttpServerUtility.UrlDecode

public static string UrlDecode(
    string str
)

参数

str
    Type: System.String
    The string to decode.

返回值

Type: System.String
A decoded string.
于 2011-07-24T16:05:21.467 回答