1. 在学习近乎的过程中 进入安装页面的 url 中的jinhu不知道是怎么来的? 悬赏:0

源代码是这样写的:

 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怎么来的?

  • panxu_0530
  • 莫染尘埃的时光
  • 2015-03-09 14:29 发布

http://localhost/jinhu/这是一个虚拟目录!

QQ图片20150309142456.png在这个地方可以修改,也可以在iis,添加站点访问!