In our MVC application we want the user after he is logged in to be redirected to the page he visted last in a previous session.

What is a good approach for achieving this?

I am thinking of an httpmodule-->begin request or via the global.asax

And at which point in the requestprocess should i put the logic to check wether the cookie exists and do the redirect? In the Application.Init?

Any advice would be really appreciated!

link|improve this question

2  
Why you are making simple thing to complex? just check in login button click event. – Waqas Raja Apr 18 '11 at 9:02
Waqas is right. Doing it in the action corresponding to the login button click would be the way to do it. – Naraen Apr 18 '11 at 9:10
@Waqas, @Naraen Both of you are wrong. There does not exist button click event in mvc – archil Apr 18 '11 at 10:12
@archil, you are right, but there must be some view method where user name and password is being checked through db. – Waqas Raja Apr 18 '11 at 10:30
Can you provide your process flow? As in 1. user accesses our site 2. goes to login screen (auto/manual) 3. logs in... etc. This will make it possible for us to analyse what you're doing wrong. Your redirection should definitely be in controller action in terms of RedirectToSomething... So you are doing something wrong here. – Robert Koritnik Apr 18 '11 at 10:38
show 2 more comments
feedback

2 Answers

up vote 0 down vote accepted

That is correct, there is no event on click. However, there is a much simpler soluction, MVC handles form submits and redirects quite well. To store the last visited URL, you could use an action filter on your controller. Then to handle the redirect, create two Login functions. One handles the GET request, the other the POST request. In the POST request, after having verified authentication, retrieve the URL (or action) from the cookie and redirect the user.

It would be something like this:

[HttpGet]
public ActionResult Login()
{
    return View();
}

[HttpPost]
public ActionResult Login(LoginViewModel model)
{
    if (authenticated)
    {
        //get cookie information
        HttpCookie cookie;
        cookie = Request.Cookies["StoredURLFromLastSession"];
        String StoredURLFromLastSession = cookie.Value;

        //Choose one of these redirect methods
        //returns to a hard coded URL
        //return Redirect(StoredURLFromLastSession);

        //redirects to a route (using routes created in global.asax
        //return RedirectToRoute(StoredURLFromLastSession);

        //redirects to a specific action/controller
        //return RedirectToAction(StoredURLFromLastSession);
    }
}

Hope this helps.

link|improve this answer
All of our controllers inherit from the controller called: "Application controller. This application conteroller contains a method "OnAuthorization". Should that be the place to place the logic? – HerbalMart Apr 18 '11 at 11:26
1  
@HerbalMart, I wouldn't recommend that. The Code example above already handles the login event. You have only one login action, and during that action, after you verify authentication, you redirect the user. Using the onauthenticate would mean you use [authorize] attribute not necessary how its meant to be used. The idea of creating your attribute is to keep track of the last URL the user accessed. – mateuscb Apr 18 '11 at 13:54
@HerbalMart did you get it working? any other help needed? – mateuscb Apr 18 '11 at 16:55
feedback

You could create a custom action filter that saves the currently requested URL to the cookie. Then check for the cookie value in your login action method and redirect if necessary.

In doing this you could decorate only the controllers and actions that you want that are potential entry points. e.g. not actions that return partial views etc.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.