源代码是这样写的:
protected void Page_PreInit(object sender, System.EventArgs e)
{
int iisVersion = 6;
int.TryParse(ConfigurationManager.AppSettings["IISVersion"], out iisVersion);
if (iisVersion >= 7)
Response.Redirect(Request.ApplicationPath);
else
Response.Redirect("~/Home.aspx");
}
但是在浏览器的访问路径是这样的:http://localhost/jinhu/Home.aspx 的,不太明白,其中的jinhu怎么来的?