先用redirect:
Response.Redirect("..\\TestPage2.aspx");  可以~
用window.open:
string sURL = "..\\TestPage2.aspx";
Response.Write("<script language='javascript'>window.open('" + sURL + "','win','width=500,height=300,top=0,left=0');</script>");
结果错误!
错误信息:HTTP 错误 400 - Bad Request。请问怎么修改?
随便给一个用window.open打开上一层目录的例子就可以了,谢谢