protected void btnNew_Click(object sender, EventArgs e) { Response.Redirect(@"../Project/Transports/ProjectNew.aspx"); }
不知道为什么页面不能跳转,谁能告诉一下,谢谢
将“../”改为实际的路径试试
先看一看路径是否正确,如果不正确将@去掉,Redirect好像里面包含了@的功能,你自己试一下吧..
Response.Redirect("~/Project/Transports/ProjectNew.aspx");
这么写,用asp.net路径。。。
试试
string strURL=http://www.google.com.cn;
Server.Transfer(strURL);
为什么要用button做超链接呢?
直接用超链接不是更好?