是否可以以编程方式指定 Url 值,然后相应地导航到页面?
string url = http://localhost:4039/LRVisuals/Default.aspx;
Url.AbsolutePath = url;
是否可以以编程方式指定 Url 值,然后相应地导航到页面?
string url = http://localhost:4039/LRVisuals/Default.aspx;
Url.AbsolutePath = url;
您可以使用Response.Redirect
或Server.Transfer
导航到页面。
Response.Redirect(url);
您会在这里发现两者之间的差异。WithServer.Transfer
Page.PreviousPage
不为空,您可以访问它的控件或 ViewState。