使用Windows身份验证如何将所有初始请求重定向到特定页面

时间:2013-03-11 07:14:18

标签: c# asp.net windows-authentication form-authentication

我有一个在Windows身份验证模式下运行的asp.net Web应用程序。我的要求是用户第一次请求的任何页面(URL)(会话开始)它重定向到LandingPage.aspx。任何人都可以建议如何使用Windows身份验证将所有初始请求重定向到特定页面(LandingPage.aspx)?

提前致谢。

1 个答案:

答案 0 :(得分:0)

我认为您可以使用Session_Start文件的Global.asax方法并重定向到您的目标网页。

void Session_Start(object sender, EventArgs e)
{
    Response.Redirect("LandingPage.aspx");
}