将url设置为指定的字符串值

时间:2013-01-22 11:59:55

标签: c# asp.net visual-studio-2008

是否可以以编程方式指定Url值,然后相应地导航到该页面?

string url = http://localhost:4039/LRVisuals/Default.aspx;
Url.AbsolutePath = url;

1 个答案:

答案 0 :(得分:1)

您可以使用Response.RedirectServer.Transfer导航到某个页面。

Response.Redirect(url);

您会发现here之间存在差异。 Server.Transfer Page.PreviousPage不为空,您可以访问控件或ViewState。