Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
13
votes
2answers
3k views

Get filter redirect to action?

RedirectToAction is protected, and we can use it only inside actions. But if I want to Redirect in Filter? public class IsGuestAttribute: ActionFilterAttribute { public override void ...
10
votes
2answers
2k views

Does ASP.NET MVC RC has a strongly typed RedirectToAction method already?

Since I have decided to let RC go while staying with Beta for now, I have no way of knowing whether there has been some progress in this area. Who has tried it, are there strongly typed ...
8
votes
1answer
3k views

RedirectToAction between areas?

Is there a way to redirect to a specific action/controller on a different Area?
6
votes
3answers
1k views

keep viewdata on RedirectToAction

[AcceptVerbs(HttpVerbs.Post)] public ActionResult CreateUser([Bind(Exclude = "Id")] User user) { ... db.SubmitChanges(); ViewData["info"] = "The account has been created."; ...
4
votes
5answers
2k views

ASP.NET MVC - How to Preserve ModelState Errors Across RedirectToAction?

I have the following two action methods (simplified for question): [HttpGet] public ActionResult Create(string uniqueUri) { // get some stuff based on uniqueuri, set in ViewData. return ...
4
votes
3answers
1k views

Rendering a view to a string in MVC, then redirecting — workarounds?

I can't render a view to a string and then redirect, despite this answer from Feb (after version 1.0, I think) that claims it's possible. I thought I was doing something wrong, and then I read this ...
3
votes
4answers
475 views

How to either return JSON or RedirectToAction?

I have an Action Method that I'd either like to return JSON from on one condition or redirect on another condition. I thought that I could do this by returning ActionResult from my method but doing ...
3
votes
3answers
295 views

How do you link to an action that takes an array as a parameter (RedirectToAction and/or ActionLink)?

I have an action defined like so: public ActionResult Foo(int[] bar) { ... } Url's like this will work as expected: .../Controller/Foo?bar=1&bar=3&bar=5 I have another action that does ...
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 ...
2
votes
1answer
274 views

MVC3 Authorize: Is It Bad Form to Call an Authorized Action from another Action?

Is it required to use RedirectToAction when calling a controller action from another action? I currently just call them directly because I do not want them to return, and thus I bypass the Authorize ...
2
votes
1answer
359 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 ...
2
votes
3answers
394 views

Asp.NET MVC strong typed controllers

I saw somewhere code like this: return View(x=>x.List()); Instead of return View("List"); What do I need to achieve this ? I'm using Asp.net MVC 2 RC 2 EDIT I do not mean strong typed ...
2
votes
2answers
308 views

Route not getting resolved

I want clean URLs and have defined two routes: routes.MapRoute( "Search", "Search", new { controller = "Search", action = "SearchPanel" } ); routes.MapRoute( "SearchResults", ...
2
votes
3answers
1k views

Render view to string followed by redirect results in exception

So here's the issue: I'm building e-mails to be sent by my application by rendering full view pages to strings and sending them. This works without any problem so long as I'm not redirecting to ...
2
votes
1answer
1k views

In ASP.NET MVC, preserve URL when return RedirectToAction

I have an action method, and depending on what is passed to it, I want to redirect to another action in another controller. The action and controller names are determined at run time. If I return ...
1
vote
3answers
206 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
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
0answers
78 views

mvc 2 passing a parameter as a QueryString

If I have for example a controller home with a ActionResult videoInfo Home/VideoInfo that pop up a form where put id and after clicking button getinfo it will redirect me to a page where info about a ...
1
vote
1answer
207 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
2answers
125 views

MVC3 uri with or without “/” show different response

What is difference between these two paths? http://www.mydomain.com/testmvc3 http://www.mydomain.com/testmvc3/ I put the code in HomeController: // GET: /Home/ public ActionResult Index() { if ...
1
vote
1answer
180 views

Facebook SDK MVC CanvasRedirectToAction

I'm trying to pass some value using TempData["SomeValue"] to another action using this.RedirectToAction("Action"); public ActionResult TestTempData() { TempData["TeamId"] = 1; ...
1
vote
3answers
215 views

Strongly Typed Views Model on a RedirectToAction

I have two action methods that look like this [HttpPost] public ActionResult Search(Models.InputModel input) { if (!IsSearchCriteriaValid(input)) return ...
1
vote
1answer
638 views

MVC RedirectToAction from one controller to another - View is not displayed issue

I have a controller in which is do some checks. If for one reason or another and exception occurs I want to display the error messages in another view in another controller. This is how my exception ...
1
vote
1answer
245 views

What are some alternatives to RedirectToAction?

On my HomeController I have an index action which redirects to the index action of the CustomerController via the RedirectToAction method. In this instance I don't like how RedirectToAction modifies ...
1
vote
2answers
1k views

jQuery preventing RedirectToAction from working?

I'm trying to redirect the user if they login successfully but the code I have on my page seems to be preventing the redirection from working. If I remove the jQuery below the redirection works. Can ...
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
720 views

MVC 2 RC RedirectToAction woes

I have setup a custom route as defined in my global.asax: routes.MapRoute( "Search", "{controller}/{action}/{type}/{searchterm}", new { controller = "Search", action = "Results", type ...
1
vote
1answer
600 views

Retain jquery tab position after Post action in asp.net mvc

I have a page with jquery tabs in which the user can update their Profile, Password, General in each tab. When a user update the details in "General" tab, the post action will be called and it ...
1
vote
2answers
333 views

RedirectToAction Not Loading Correct View

This is a weird one. Probably painfully obvious. :D I have a View (let's call it View0.aspx) that posts a form to a controller action (let's call it Action1). Action1 runs and then returns ...
1
vote
2answers
195 views

Should Rails redirect_to be sending html?

In most frameworks, sending a redirect means setting the HTTP headers and exiting without sending any HTML data back to the browser. However, using Firebug I see that Rails is not following this ...
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
0answers
17 views

How do I make a redirectAction when using REST Plugin (Struts 2)

Considering the typical case when, after creating, updating or deleting an element, you want to do a redirectAction to the "index" action (or whatever other action). ¿How do you make it if you are ...
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
2answers
44 views

HOWTO point an <action> in struts.xml to a different <action>?

Basically when the user goes to example.com I want to serve it the same content I would have, if it went to example.com/news. Below is the code snippet. Current COnfig <action name="" ...
0
votes
0answers
48 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
46 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
0answers
72 views

Rails after_filter

I am creating an application that communicates with paypal..I'd like to create an after filter that will redirect the user to the paypal site to complete payment... I have set up an after_filter: ...
0
votes
0answers
130 views

Session State is erased after calling RedirectToAction() in ASP.NET MVC 3

I use a simple sequences: Set a Session State in [HttpGet] method. Redirect to another action using RedirectToAction() in [HttpPost] method. Want to get the value of that Session State, in the ...
0
votes
2answers
101 views

mvc RedirectToAction passing a parameter

I am in controller home, in ActionResult Id which has a list of string name get returned from a method. I want to RedirectToAction (Id2) using that list. In View -> Id2 the ViewData of that list name ...
0
votes
0answers
28 views

Rails redirect issues

I have setup some simple associations in my rails app: resources :properties do resources :units end After updating a unit: 'localhost:3000/properties/2/units/3/edit' I want to be redirected ...
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
272 views

.NET MVC 3 trying to get RedirectToAction to follow the format of {controller}/{action}/{id}/{GUID}

I have to be missing something obvious here. I would like to ensure all RedirectToAction follow the format of {controller}/{action}/{id}/{GUID} (e.g. ...
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
1answer
785 views

Hide Route values when using RedirectToAction

[HttpGet] public ActionResult Index() { return View(); } [HttpPost] public ActionResult Index(HomeOfficeViewModel viewModel) { return ...
0
votes
2answers
214 views

ASP.NET MVC - Pass current GET params with RedirectToAction

I'm looking for a way to use RedirectToAction while passing along the current request's GET parameters. So upon going to: http://mydomain.com/MyController/MyRedirectAction?somevalue=1234 I would ...
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
1k views

Passing info to another action using RedirectToAction - MVC

I have this action: public ActionResult Report(AdminReportRequest reportRequest, FormCollection formVariables) { AdminEngine re = new AdminEngine(); AdminReport report = ...

1 2