我在我的 asp.net 网站中使用表单身份验证。目前我在 web.config 中有我的身份验证设置,如下所示。
<authentication mode="Forms">
<forms loginUrl="~/Account/Login.aspx" timeout="60" cookieless="UseCookies" defaultUrl="~/landing.aspx" protection="All" slidingExpiration="true" />
</authentication>
我想在 login.aspx 页面之前导航到landing.aspx 页面,然后单击登录页面上的按钮转到 login.aspx 页面。