asp.net 中的 Request.QueryString

发布于 2024-11-26 14:18:13 字数 264 浏览 2 评论 0原文

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

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

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);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

何以笙箫默 2024-12-03 14:18:13

加密还是编码?

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

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.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文