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 ...
15
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
2k 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
501 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
320 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
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
404 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
319 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
1answer
187 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
226 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
694 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
253 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
2answers
735 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
617 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
343 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 ...
0
votes
2answers
233 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
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 = ...
0
votes
1answer
151 views
How does RedirectToAction not hit my Action?
I've been seeing some unexpected behavour in my MVC application.
Lets say I have 3 action methods
Details
Details_Fr
Details_En
The idea behind the 2nd and 3rd is that they switch the language ...
0
votes
1answer
133 views
RedirectToAction hangs without redirecting
I have the following code for registering users in my app
[HttpPost]
public virtual ActionResult Register( RegisterModel model ) {
if ( !ModelState.IsValid ) {
//Invalid - redisplay form ...
0
votes
1answer
65 views
Is a redirect less efficient than returning other types of result?
Is a redirect less efficient than returning other types of result? I ask because if my current request is asynchronous I want to return a partial with only relevant data. Otherwise I need to render ...
0
votes
3answers
1k views
How to redirect to a controller action from a JSONResult method in ASP.NET MVC?
I am fetching records for a user based on his UserId as a JsonResult...
public JsonResult GetClients(int currentPage, int pageSize)
{
if (Session["UserId"] != "")
{
var clients = ...