0
  Response.Redirect("~/CustomList.aspx?id="+Data.Item1+"&type="+Data.Item2);

我从 Codebehind Asp.net 添加这个

但是它不起作用

收到此错误

此页面无法显示

•确保网址http://localhost:51955正确。

•使用您的搜索引擎查找页面。

•在几分钟内刷新页面。

4

1 回答 1

0

你能试试这样的吗?

 string parameter1 = HttpUtility.UrlEncode(Data.Item1)
 string parameter2 =  HttpUtility.UrlEncode(Data.Item2)

 Response.Redirect("~/CustomList.aspx?id="+parameter1 +"&type="+parameter2 );

并确保该页面位于项目的根目录中,如果此页面位于另一个项目中,则需要更改 URL 中的端口。本地主机:端口/CustomList.aspx

于 2013-05-22T11:49:45.180 回答