我的代码运行良好,但我想以加密形式发送“项目”和“模式”。asp 中的任何内置方法?如果不是,请建议替代解决方案。
string url = "QueryStringRecipient.aspx?";
url += "Item=" + lstItems.SelectedItem.Text + "&";
url += "Mode=" + chkDetails.Checked.ToString();
Response.Redirect(url);
我的代码运行良好,但我想以加密形式发送“项目”和“模式”。asp 中的任何内置方法?如果不是,请建议替代解决方案。
string url = "QueryStringRecipient.aspx?";
url += "Item=" + lstItems.SelectedItem.Text + "&";
url += "Mode=" + chkDetails.Checked.ToString();
Response.Redirect(url);
试试看这里:
您也可以使用Session
变量。
相关文章:
加密还是编码?
要对字符串进行编码,有HttpServerUtility.UrlEncode
public string UrlEncode(
string s
)
参数
s
Type: System.String
The text to URL-encode.
返回值
Type: System.String
The URL-encoded text.
public static string UrlDecode(
string str
)
参数
str
Type: System.String
The string to decode.
返回值
Type: System.String
A decoded string.