从asp.net代码后面添加查询字符串不工作
本文关键字:查询 字符串 工作 添加 asp net 代码 | 更新日期: 2023-09-27 18:14:53
Response.Redirect("~/CustomList.aspx?id="+Data.Item1+"&type="+Data.Item2);
我是从Codebehind Asp.net中添加的
但是它不工作
得到这个错误
此页不能显示
•确保网址http://localhost:51955
正确。
•用搜索引擎查找该页面。
•几分钟后刷新页面
你能试一下吗?
string parameter1 = HttpUtility.UrlEncode(Data.Item1)
string parameter2 = HttpUtility.UrlEncode(Data.Item2)
Response.Redirect("~/CustomList.aspx?id="+parameter1 +"&type="+parameter2 );
并且确保该页位于项目的根目录中,如果该页位于另一个项目中,则需要更改URL中的端口。Localhost:港口/CustomList.aspx