如果是用.net和vs做的,就拖一个button的控件到页面上,然后双击button,会打开该页面的cs文件,只要在cs文件中的Button1_Click(){ }的方法中 写入Response.Redirect(“index.aspx”);就可以了跳转页面了
index.aspx指的是你要添加的网址
ClientScript.RegisterClientScriptBlock(GetType(), "info", "alert('马上跳转页面');window.location.href='Default.aspx'", true);
Response.Redirect(string.Format("/xx/xxx.aspx?req=r"));
页面转跳和重定向,网上搜搜代码很多的
Response.Redirect("");