举个例子吧,“E:\Code\jxhd”,假设你是在jxhd目录下请求跳转,1,Response.Redirect("/Login.aspx"),是打开根目录E:\下的Login.aspx页面,
2.Response.Redirect("Login.aspx"),是打开jxhd文件夹下的Login.aspx页面
3,假设你想打开code文件夹下的Login.aspx页面,可以写成Response.Redirect("E:\Code\Login.aspx").
所以你的Response.Redirect("Login.aspx")其实是相对于Response.Redirect("E:\Code\jxhd\Login.aspx")的简写