我想知道为什么使用asp.net登录网站时直接打开默认页面而不是网站中的另一个页面,它直接转到我使用的主页(loginStatus控件和登录控件)?
问问题
107 次
1 回答
2
It depends on how you specify the default page in authentication tag inside web.config.
The default is default.aspx. If you want to redirect to a specific page, you can specify in defaultUrl.
<authentication mode="Forms">
<forms loginUrl="member_login.aspx" defaultUrl="index.aspx" />
</authentication>
More information here.
于 2013-10-13T01:47:51.437 回答