Response.Redirect
是一个ASP.NET的方法,用于将用户请求重定向到另一个URL。
以下是如何使用 Response.Redirect
方法:
csharp
// 在C#中的使用示例
protected void Page_Load(object sender, EventArgs e)
{
// 重定向到另一个页面
Response.Redirect("https://www.example.com");
// 或者可以指定重定向的URL并传递查询字符串参数
Response.Redirect("https://www.example.com/page2.aspx?id=123");
}
vb
' 在Visual Basic中的使用示例
Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
' 重定向到另一个页面
Response.Redirect("https://www.example.com")
' 或者可以指定重定向的URL并传递查询字符串参数
Response.Redirect("https://www.example.com/page2.aspx?id=123")
End Sub
请注意,使用 Response.Redirect
方法后,将立即将用户重定向到指定的URL,并且不会继续执行当前页面上的其他代码。