Tagged Questions

22
votes
5answers
10k views

How do you RedirectToAction using POST instead of GET?

When you call RedirectToAction within a controller, it automatically redirects using an HTTP GET. How do I explicitly tell it to use an HTTP POST? I have an action that accepts both GET and POST ...
2
votes
1answer
360 views

Problems with RedirectToAction MVC2 - Cannot implicitly convert type 'System.Web.Mvc.RedirectToRouteResult' to 'System.Web.Mvc.ViewResult'

I am receiving this error when trying to use RedirectToAction, can anyone offer any advice on why this could be occuring, ive used this before without any problems, i must be missing something. ...
2
votes
1answer
1k views

MVC2 and MVC Futures causing RedirectToAction issues

I've been trying to get the strongly typed version of RedirectToAction from the MVC Futures project to work, but I've been getting no where. Below are the steps I've followed, and the errors I've ...
1
vote
3answers
208 views

Post Redirect Get Hide URL Parameters

Let me try to set the scenario here first. This is done using ASP.NET 4.0, MVC3, and C#. I have a picture gallery. I have a manager for the albums in the picture gallery. Each gallery has a set of ...
1
vote
3answers
51 views

How to redirect to a specific URL from within a controller?

I am trying to redirect user to a specific address, after they submit a form. What I use is the code below in my Content controller: return RedirectToAction("Business", new RouteValueDictionary(new ...
1
vote
1answer
208 views

Redirecting to mobile page in Asp.Net MVC 3

I'm trying to use a different login page for an Asp.Net MVC application that is modified to fit mobile devices, primarily iPhone/Android. All I basically need is to modify the login view, because the ...
1
vote
1answer
357 views

Can I use TempData with Response.Redirect?

I am working with ASP.net MVC 2 framework, for multiple sites. We have a base site and then sub sites that inherit from a "Core" site that contains 90% of the functionality that the sub sites will ...
1
vote
2answers
359 views

RedirectToAction - but I want it to go to http://site.com/controller/action/id?

I'd like to move an asp.net mvc response to http://site.com/emails/list/rob@email.com Using RedirectToAction("list", "emails", new { id = "rob@email.com"}); takes you to ...
0
votes
4answers
148 views

How to skip controller name while using RedirectToAction?

I have accountController class and its have login & home views. [HandleError] public class accountController : Controller { [HttpPost] public ActionResult ...
0
votes
1answer
665 views

RedirectToAction not working when called by jQuery?

I am trying to call an action method by jQuery, and got help with passing parameters here: Calling action method in MVC with jQuery and parameters not working . However, even though the parameters are ...