我用VS2005编写网页,请问各位大神,如何用Button1_onclick()的事件实现跳转到index页面上,求代码!谢过

实在VS2005下新建的网站,文件都是.htm文件的跳转!
2024-12-14 03:57:42
推荐回答(1个)
回答1:

protected void Button1_Click(object sender, EventArgs e)
{
Response.Redirect("index.aspx");
}