Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Lets suppose that I have some pages

  • some.web/articles/details/5
  • some.web/users/info/bob
  • some.web/foo/bar/7

that can call a common utility controller like

locale/change/es or authorization/login

How do I get these methods (change, login) to redirect to the previous actions (details, info, bar) while passing the previous parameters to them (5, bob, 7)?

In short: How do I redirect to the page that I just visited after performing an action in another controller?

share|improve this question

5 Answers

up vote 29 down vote accepted

try:

public ActionResult MyNextAction()
{
    return Redirect(Request.Referrer);
}

alternatively, touching on what darin said, try this:

public ActionResult MyFirstAction()
{
    return RedirectToAction("MyNextAction",
        new { r = Request.Url.ToString() });
}

then:

public ActionResult MyNextAction()
{
    return Redirect(Request.QueryString["r"]);
}
share|improve this answer
4  
Close. I used return Redirect(Request.UrlReferrer.ToString()); – adolfojp May 3 '09 at 1:44
Just a suggestion: you can use "Redirect" explictly is harder to unit test your controller. You are better off using a "RedirectToAction" instead. – Syd Jun 10 '10 at 2:12
I'd recommend using Request.Url.AbsolutePath.ToString() as the AccountController's LogOn method contains checks for URL's beginning with '/', etc. – gotnull Mar 19 '12 at 6:09
@gotnull Request.Url.AbsolutePath will redirect to the same action. Which is not the desired output. We have to return to the second last action. For that we could write: return Redirect(ControllerContext.HttpContext.Request.UrlReferrer.ToString()); – Rahat Nov 5 '12 at 15:17
2  
@nathanridley: This does not work for POST requests. Say the user is on GET Index then GET Edit. The referring URL then is Index but then when the user does POST Edit the referrer is now Edit from the preceding GET request. How can I make sure POST Edit knows the URL that referred the user to GET Edit? – one.beat.consumer Nov 15 '12 at 23:53

A suggestion for how to do this such that:

  1. the return url survives a form's POST request (and any failed validations)
  2. the return url is determined from the initial referral url
  3. without using TempData[] or other server-side state
  4. handles direct navigation to the action (by providing a default redirect)

.

public ActionResult Create(string returnUrl)
{
    // If no return url supplied, use referrer url.
    // Protect against endless loop by checking for empty referrer.
    if (String.IsNullOrEmpty(returnUrl)
        && Request.UrlReferrer != null
        && Request.UrlReferrer.ToString().Length > 0)
    {
        return RedirectToAction("Create",
            new { returnUrl = Request.UrlReferrer.ToString() });
    }

    // Do stuff...
    MyEntity entity = GetNewEntity();

    return View(entity);
}

[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Create(MyEntity entity, string returnUrl)
{
    try
    {
        // TODO: add create logic here

        // If redirect supplied, then do it, otherwise use a default
        if (!String.IsNullOrEmpty(returnUrl))
            return Redirect(returnUrl);
        else
            return RedirectToAction("Index");
    }
    catch
    {
        return View();  // Reshow this view, with errors
    }
}

You could use the redirect within the view like this:

<% if (!String.IsNullOrEmpty(Request.QueryString["returnUrl"])) %>
<% { %>
    <a href="<%= Request.QueryString["returnUrl"] %>">Return</a>
<% } %>
share|improve this answer

Pass a returnUrl parameter (url encoded) to the change and login actions and inside redirect to this given returnUrl. Your login action might look something like this:

public ActionResult Login(string returnUrl) 
{
    // Do something...
    return Redirect(returnUrl);
}
share|improve this answer

If you are not concerned with unit testing then you can simply write:

return Redirect(ControllerContext.HttpContext.Request.UrlReferrer.ToString());
share|improve this answer

Can't we go simply like this?

put this script in page:

<script type ="text/javascript">
var referrer = "";
$(document).ready(function () {
    referrer = document.referrer;
})

function goBack() {
    location.href = referrer;
}

</script>

Call it by clicking upon this anchor tag:

<a href="javascript:goBack()" class="button_green">Back to list</a>

Anything wrong in it?

share|improve this answer
The OP is asking if he can redirect to the previous url after a POST – superartsy Apr 9 at 13:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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