Tagged Questions
23
votes
5answers
1k views
What clever things have you done with an ASP.NET MVC Action method
The ASP.NET MVC controller action methods are primarily used for handling 'business' operations but it can be used for lots more.
I thought it would be fun to see what creative, useful things people ...
1
vote
2answers
317 views
How can i pass two different query string params that represent one action method param?
i've got an action method like the following
public JsonResult Index(string version)
{
.. do stuff, return some data v1 or v2. Default = v2.
}
So, this action method returns some data, which can ...