21

我正在做从一个页面到另一个页面的重定向,以及从第二个页面到第三个页面的另一个重定向。我有第一页的信息,第二页没有使用,但必须转移到第三页。是否可以将第三页的 URL 及其查询字符串作为查询字符串发送到第二页。这是一个例子:

Response.Redirect("MyURL1?redi=MyURL2?name=me&ID=123");

我的问题是作为查询字符串发送的 URL 有两个查询字符串变量,那么系统如何知道 & 之后的内容是第二个 URL 的第二个变量而不是第一个 URL 的第二个变量?谢谢你。

4

4 回答 4

21

您必须对作为参数传递到重定向 URL 中的 url 进行编码。像这样:

MyURL = "MyURL1?redi=" + Server.UrlEncode("MyURL2?name=me&ID=123");

这将创建一个没有双“?”的正确网址 和 '&' 字符:

MyURL1?redi=MyURL2%3fname%3dme%26ID%3d123

请参阅 MSDN:HttpServerUtility.UrlEncode 方法

要从此编码的 url 中提取重定向 url,您必须使用HttpServerUtility.UrlDecode它再次将其转换为正确的 url。

于 2012-05-03T12:20:31.160 回答
4

我发现在发送之前在 Base64 中编码查询字符串参数很有帮助。在某些情况下,当您需要发送各种特殊字符时,这会有所帮助。它不会产生好的调试字符串,但它会保护您发送的任何内容不与任何其他参数混合。

请记住,解析查询字符串的另一方也需要解析 Base64 以访问原始输入。

于 2012-05-03T12:28:30.590 回答
3

您的查询字符串应如下所示:

MyURL1?redi=MyURL2&name=me&ID=123

检查:http ://en.wikipedia.org/wiki/Query_string

你应该有一个?符号和所有参数用 & 连接。如果参数值包含特殊字符,只需对它们进行UrlEncode

于 2012-05-03T12:13:56.467 回答
0
using System.IO;
using System.Net;

static void sendParam()
{

    // Initialise new WebClient object to send request
    var client = new WebClient();

    // Add the QueryString parameters as Name Value Collections
    // that need to go with the HTTP request, the data being sent
    client.QueryString.Add("id", "1");
    client.QueryString.Add("author", "Amin Malakoti Khah");
    client.QueryString.Add("tag", "Programming");

    // Prepare the URL to send the request to
    string url = "http://026sms.ir/getparam.aspx";

    // Send the request and read the response
    var stream = client.OpenRead(url);
    var reader = new StreamReader(stream);
    var response = reader.ReadToEnd().Trim();

    // Clean up the stream and HTTP connection
    stream.Close();
    reader.Close();
}
于 2013-06-11T21:21:02.133 回答