Tagged Questions

1
vote
2answers
55 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 …
1
vote
3answers
68 views

keep viewdata on RedirectToAction

[AcceptVerbs(HttpVerbs.Post)] public ActionResult CreateUser([Bind(Exclude = "Id")] User user) { ... db.SubmitChanges(); ViewData["info"] = "The account has …
6
votes
4answers
1k 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 bo …
0
votes
1answer
40 views

RedirectToAction between areas?

Is there a way to redirect to a specific action/controller on a different Area?
0
votes
1answer
227 views

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

Hi -- 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 wro …
1
vote
2answers
77 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 http://s …
2
votes
2answers
220 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 r …
2
votes
1answer
380 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 t …
3
votes
1answer
619 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 …
0
votes
1answer
202 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 overri …