Tagged Questions
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 ...
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 ...