在我的 web.config 文件中,我有以下代码:
<system.web>
<authentication mode="Forms">
<forms loginUrl="/Account/Login" slidingExpiration="true" timeout="1" />
</authentication>
<sessionState timeout="1"></sessionState>
</system.web>
我有主页项目,其中会有子页面。我已经[Authorize]
为每个视图索引方法提供了属性。
会话完成后,当我们选择任何视图时,项目主页内的页面将被重定向。但我希望整个页面被重定向。
任何帮助表示赞赏。