我正在构建一个测试Web应用程序ASP.NET VB,在使用用户名jose和密码成功登录后,在http://www.latinosnetwork.net/aspnetsystem/Login.aspx上看到它,并使用formsauthentication.redirectfromloginpage方法将应用程序重定向到默认值。 aspx在根目录中不存在,也就是应用程序不在根目录下。
对此有任何帮助。
修改
这里仍然无法正常配置:
<location path="wwwroot/aspnetsystem">
<system.web>
<customErrors mode="Off"/>
<authentication mode="Forms">
<forms defaultUrl="wwwroot/aspnetsystem/Default.aspx" />
</authentication>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>
答案 0 :(得分:0)
在web.config中设置要重定向到的默认页面
<authentication mode="Forms">
<forms defaultUrl="index.aspx" />
</authentication>