Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

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 ...
5
votes
3answers
463 views

ASP.NET MVC AuthorizeAttribute passing values to ActionMethod?

I'm only a newcomer to ASP.NET MVC and am not sure how to achieve a certain task the "right way". Essentially, I store the logged in userId in HttpContext.User.Identity and have written an ...
4
votes
2answers
130 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
190 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 ...
2
votes
1answer
29 views

How to protect certain actions from usage according to a custom UserRoles table I created

This is the basic database structure for Users and UserRoles. My client wants to be able to look at a Role and tick some boxes, "This role can do x, y and z". X, Y and Z being some actions in the ...
2
votes
0answers
219 views

ModelState.IsValid always returns true

I have the following action method: public ActionResult SignUp(Player player) { if (ModelState.IsValid) {...} } The problem is that ModelState.IsValid always returns true even ...
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
316 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
0answers
26 views

In rails, the controller.action_methods returns methods even if they have no associated routes

For resourceful controllers, calling the controller.action_methods is yielding all the possible action methods on the controller. I have a resource for which I have restricted the routes to [:only=> ...
0
votes
2answers
72 views

ASP .NET MVC 3 + Calling an HttpPost Action Method From a Different Controller

I am currently developping a full-web application under VS2010 and I am using the ASP .NET MVC 3 framework. Here is a simplified overview of my application : I have implemented a controller Ctrl1. ...
0
votes
1answer
88 views

pass input type image name/value as a parameter to Action Method in MVC 3

I have an image in a view <input type="image" src="(Location)" name="next" id="imgNext"/> Now what I need to do is to pass the name of the image ("Next") to the action method in the ...
0
votes
3answers
64 views

ASP.NET MVC3 : ActionMethod with same name and different arguments for List and Details view

I have a ProdcutsController where i have 2 Action methods. Index and Details. Index will return list of products and Details will return details of a selected product id. So my urls are like ...
0
votes
2answers
99 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
74 views

How to request List<T> data or any other data from the Controller

I need to render a DropDown list and I don't want to pass list's values to the View as a part of the model. Basically what I'm trying to do looks like that: @{ var roles = ...
0
votes
2answers
191 views

ASP.Net MVC Routing with HTTP Action Verbs

I am writing a implementing a ASP.NET web app, and when I call against a particular url, I want to call a different action method depending on whether the request is a GET or a POST. I've tried two ...
0
votes
3answers
738 views

ajax call results in error instead of succes

In my ASP.net mvc3 project, i use a ajax call to send json data to a create actionmethod in the controller Company. But when i debug the ajax call, it always end up in a error result instead of the ...
0
votes
2answers
419 views

ASP.NET MVC Same Name For Action Methods With Different Return Types

I've two action methods in my controller, both are called on POST request but have different return type: public JsonResult AJAXCreate() public string AJAXCreateNSave([Bind(Exclude = "Id, ...
0
votes
1answer
62 views

How to write an action method in a controller to reference a partial view?

I have written an action method in the ReservationController class. To get this code to work I should move the GetCoreTab file to the Reservation folder. I do not want to do that since I give the path ...
0
votes
1answer
161 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 ...
0
votes
2answers
127 views

Default value for parameter in Controller Method is overriding everything

Hello i have just started learning mvc2 and im having a problem with the default value for the parameter page(you can see the method below). Its always 0 regardless of what i type in the URL. For ...