Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
588 views

How do I add a parameter for an anchor/hash to a RedirectToRouteResult?

I want to use a RedirectToRouteResult to redirect to a url like /users/4#Summary. Using ASP.NET MVC 1.0, I haven't been able to find a way to do that - have I missed it?
2
votes
4answers
9k views

ASP.Net MVC - redirecting to route gives Redirect Loop

This is probably one of those easy questions.. I'm trying to redirect the user after they've successfully authenticated, or return them back to the login page. But the Success page is on a different ...
1
vote
1answer
359 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 ...
0
votes
2answers
761 views

MVC3 Redirect to route from ActionResult

So I have a HttpPost only ActionResult called Edit. After doing its thing (logic etc), I want it to redirect to a different controller. Lets say the HomeController. Here it is: [HttpPost] public ...