0

我想知道为什么使用asp.net登录网站时直接打开默认页面而不是网站中的另一个页面,它直接转到我使用的主页(loginStatus控件和登录控件)?

4

1 回答 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 回答