asp.net双击按钮跳转代码
时间: 2023-11-14 19:04:38 浏览: 87
在 ASP.NET 中,可以使用以下代码在按钮上双击时跳转页面:
```csharp
protected void Button1_Click(object sender, EventArgs e)
{
Response.Redirect("YourPage.aspx");
}
```
其中,Button1_Click 是按钮的事件处理程序,"YourPage.aspx" 是要跳转的页面的名称。使用 Response.Redirect 方法将用户重定向到另一个页面。
阅读全文