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

I want to redirect the Index action of the Home controller to another controller's action and nothing else. My code is thus:

    public void Index()
    {
        //All we want to do is redirect to the class selection page
        RedirectToAction("SelectClasses", "Registration");
    }

Right now, this just loads a 0 kB blank page and does nothing. I have a feeling it has something to do with that void return type, but I don't know what else to change it to. What's the issue here?

share|improve this question

4 Answers

up vote 62 down vote accepted

Your method needs to return a ActionResult type:

public ActionResult Index()
{
    //All we want to do is redirect to the class selection page
    return RedirectToAction("SelectClasses", "Registration");
}
share|improve this answer

You will need to return the result of RedirectToAction.

share|improve this answer

Should Return ActionResult, instead of Void

share|improve this answer

Your methods is of return type void so change it to ActionResult type.

public ActionResult Index()
{
    //All we want to do is redirect to the class selection page
    RedirectToAction("SelectClasses", "Registration");
}
share|improve this answer

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.