刚学ASP.NET 用VS2005对着书上的列子抄了个网站,可书上没说明怎么修改首页。
例题上的首页是 Defualt.aspx ,我想该为History.aspx.我试着改了Web.config。
我把
    <!--Set forms authentication and define the login page-->
    <authentication mode="Forms">
      <forms loginUrl="Default.aspx" />
    </authentication>
换成
 <!--Set forms authentication and define the login page-->
    <authentication mode="Forms">
      <forms loginUrl="History.aspx" />
    </authentication>
可还是没用,请问各位到底要怎么改?