Top "Asp.net-mvc-controller" questions

The ASP.

Getting All Controllers and Actions names in C#

Is it possible to list the names of all controllers and their actions programmatically? I want to implement database driven …

c# asp.net-mvc asp.net-mvc-controller
Open URL in a new tab from MVC controller

How do i open an URL in a new tab / window from MVC controller based on success condition .Any way …

c# asp.net-mvc asp.net-mvc-controller
ASP.NET MVC Controller Naming Pluralization

RESTful conventions indicate using plural nouns over singular objects. What is the pluralization convention for naming ASP.NET MVC controllers, …

asp.net-mvc naming-conventions pluralize asp.net-mvc-controller
How to achieve a dynamic controller and action method in ASP.NET MVC?

In Asp.net MVC the url structure goes like http://example.com/{controller}/{action}/{id} For each "controller", say http://…

asp.net-mvc-2 asp.net-mvc-routing asp.net-mvc-controller
Hold a data object temporarily in MVC controller,MVC,MVC Controller temp storage

I have a object that i want to store for a moment. The object is in a controller for now, …

asp.net-mvc asp.net-mvc-3 caching asp.net-mvc-controller
How to pass other form data along with MVC File Upload?

I am trying to implement File Upload in MVC. I have the following code which works. @using (Html.BeginForm("ActioName", "…

asp.net-mvc file-upload dropdownbox form-data asp.net-mvc-controller
ASP.NET MVC C# Get controller and action name in class

I'm pretty much new to StackOverflow so please forgive any signs of my ignorance. :) I have a somewhat minor issue …

c# asp.net-mvc http-get asp.net-mvc-controller
Setting an alternate controller folder location in ASP.NET MVC

We can an MVC app that uses the default folder conventions for the HTML views, but we'd like to set …

asp.net-mvc asp.net-mvc-routing asp.net-mvc-controller
Routing not working when sending a DELETE request to an HttpDelete action

I have a ProductsController with only one View - Index.cshtml. The following 3 action methods are inside of this controller: //…

c# asp.net-mvc asp.net-mvc-routing asp.net-core-mvc asp.net-mvc-controller