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 ...
4
votes
2answers
131 views

Is it better to return the most specific or most general type from an action method?

What are the benefits or detriments of either?
4
votes
2answers
3k views

ASP.NET MVC - POST Action Method with Additional Parameters from URL

With ASP.net MVC is it possible to POST a form to a controller action which includes parameters not in the form, but from the URL? For example The Action method in GroupController: ...
3
votes
3answers
1k views

ASP.NET MVC: How to covert an ActionResult to string?

I would like to take an existing action method, render its return value to a string and ship it as a JSON for a response to an AJAX request. To do this, I need to render an ActionResult to a string. ...
3
votes
2answers
191 views

ASP.NET MVC: Enforce AJAX request on an action

I'm looking for a way to enforce a controller's action to be accessed only via an AJAX request. What is the best way to do this before the action method is called? I want to refactor the following ...
1
vote
1answer
42 views

How to attach a description to each ActionMethod in a Controller (ASP.net MVC)?

So recently, I came up with a way to dynamically build a nav-bar menu where the Controller (And its Index ActionMethod) would be listed in a horizontal bar at the top of each page (via Site.Master) ...
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 ...
0
votes
2answers
100 views

Make HttpPost request to an action method in an ASP.NET MVC controller

I am trying to build a functionality where I need to a create a candidate's profile in our application. There are two steps/UI's to create a candidate's profile: 1 - Create template...where the user ...
0
votes
1answer
164 views

How can I specify a namespace when calling @Html.Action(…) in ASP.NET MVC

When I try to use Html.Action in ASP.NET MVC 3 for a controller in a different namespace from the current controller I get an error : Code: @Html.Action("Foo", "Application", new { id = "FG2" }) ...
0
votes
2answers
82 views

Is this a 'hack', and if so is there a better way to determine which ActionResult to return?

I have an A - Z directory 'widget' that I have on every page. If the user is on the home page and they click something in the directory, I want to load up the directory page with the corresponding ...
0
votes
2answers
162 views

Why is this View Model being populated when I pass “” into RenderAction?

I'm trying to implement a Widget control that exists on every page in the system, which will allow the user to have basic Search & Directory functionality available on each page. This is a tab ...