请求.asp.net中的QueryString



我的代码工作得很好,但我想以加密形式发送"Item"one_answers"Mode"。任何内建的方法在asp?如果不是,请建议替代解决方案。

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

试着看这里:

加密查询字符串

加密查询参数

也可以使用Session变量


相关文章:

如何在asp.net中保护/加密您的查询字符串

如何在asp.net中加密查询字符串?

如何在asp.net中传递加密查询字符串

如何在ASP中加密查询字符串参数网网站?

加密还是编码?

要编码字符串,有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.

相关内容

  • 没有找到相关文章

最新更新