0

如果我的 Web.Config 中有以下代码

<authentication mode="Forms">
    <forms loginUrl="/Default.aspx" defaultUrl="/Webpages/Main.aspx" timeout="2880"/>
</authentication>

但是,当我运行应用程序时,首先会加载一个不同的网页

4

1 回答 1

0

Add Default Document under the <system.webServer> tag in Web.config

<defaultDocument>
        <files>
            <clear/>
            <add value="login.aspx"/>
        </files>
    </defaultDocument>

Hope it helps you

于 2013-07-26T12:03:02.397 回答