Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
782 views

How to achieve a dynamic controller and action method in ASP.NET MVC?

In Asp.net MVC the url structure goes like http://mysite.com/{controller}/{action}/{id} For each "controller", say http://mysite.com/blog, there is a BlogController. But my {controller} portion of ...
5
votes
1answer
434 views

Should controller lifestyle always be transient in Windsor configuration for ASP.NET MVC?

I ran into a problem where I had an Html.DropDownList in my view that would postback the selected value the first time I submitted the form, but each subsequent postback would only post data from the ...
2
votes
2answers
220 views

MVC2 without Routing

I have a case where MVC's routing (mapping a url to a controller) is just getting in the way. I want to circumvent it and send all urls to a single controller (no matter the format and without any ...
1
vote
0answers
144 views

ASP.net MVC controller Action with string parameter doesn't get called

So, I have a controller Action with this signature public ActionResult Details(string id) { ... } and a route in my global asax file routes.MapRoute( "DevDetails", ...
1
vote
2answers
46 views

How to gather arbitrary length list data in ASP.NET MVC

I need to gather a list of items associated with another item from my user in a ASP.NET MVC project. I would like to have a controller action like bellow. [AcceptVerbs(HttpVerbs.Post)] public ...