我目前正在使用
重定向页面Response.Redirect("URL");
这很好用,但它也改变了网址。例如:
http://localhost/index.aspx
重定向到:test.aspx会将网址更改为:
http://localhost/test.aspx
是否可以在不更改网址的情况下重定向内容?...因此网址将为:
http://localhost/test.aspx
但内容会被重定向到
test.aspx
谢谢。
答案 0 :(得分:1)
答案 1 :(得分:1)
使用Server.Transfer 这将显示default.aspx页面的内容,但不会更改URL
Server.Transfer("Default.aspx");