开发者

How to choose landing page after user logs in?

I was wondering when a user logs in using the login control for ASP.NET, how do开发者_运维知识库 we choose where the user goes after? Do we configure this in the web.config file?


Generally, you go where the user asked to go.

What usually happens is that the user requests to go to a page which requires that he be authenticated. If he's not authenticated, he gets redirected to the login page. That page accepts username and password, and gets him authenticated. It then redirects him to the page he originally requested.

Users may get annoyed with you if they requested to go to page "A" and you send them to page "B".

If the user didn't request a particular page, then he will usually go to Default.aspx. At that point, you might choose a landing page for the user, in whatever manner you like, and redirect to that page.


You can use FormsAuthentication DefaultUrl property or forced redirect user with Response.Redirect(...) after he logged in.
Or just simply allow user continue with his initial request.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜