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
27 views

MVC RedirectToAction in a catch block

I´m trying to redirect to an action from one controller to another if something in a try-block goes wrong. What I want to achieve is a general way of presenting a view to the user if something goes ...
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
78 views

How to leverage Resharper's “navigate to controller method” feature

Resharper 6 has a very nice new feature: If I write RedirectToAction or Html.Action anywhere in a MVC3 project, it get's underlined and using ctrl-click I can navigate there. It also notifies me if no ...
1
vote
1answer
356 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
2answers
50 views

In MVC, why does the routeValues property in RedirectToAction() not accept my class as argument?

So here's the deal, i want to be able to export any Enumerable of items to excel: Here's an ActionMethod in some Area of my app that constructs an "ExportToExcel" model, then Redirects it to an ...
0
votes
0answers
47 views

Redirect from one project to another project in MVC3

I have two projects under one solution in MVC3.I have one link in Project1.If click that link that will redirect to project 2's View.How to redirect?. Plz Help.Thanks.....
0
votes
3answers
45 views

how can i pass a parameter or value from one view to another through a redirect to action?

I have a login view and a reset password view in my MVC project. After a successful reset password action, i redirect back to the login view. I'd like the login view to have a means of checking ...
0
votes
1answer
218 views

MVC3 RedirectToAction after postback

With MVC, I hear that it's good practice to get back to a 'GET' action by using RedirectToAction after processing the Http postback. I understand this is so the postback is not repeated should the ...
0
votes
1answer
176 views

RedirectToAction ignoring Area after routing

I have an Area named 'Subscribers' and a controller in that area named 'SubscriptionsController' with two public action methods: Index() and Unsubscribe() where the Unsubscribe() method is passed a ...
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 ...