The tag has no wiki summary.

learn more… | top users | synonyms (1)

0
votes
1answer
13 views

Disable action method from being called from the address bar

I have a method in my controller that I don't want to be called from the address bar in the browser... Is there a way to do that? Maybe some kind of annotation, modification in the route ...
0
votes
2answers
85 views

How to get Uri of view returned by action method?

I need to serialize some object into xml, which has string property "Url" - url of page returned by some action method (in asp.net mvc 3 app I want to implement custom rss). I guess to call action ...
2
votes
1answer
124 views

Passing multiple parameter via GET with params keyword to an MVC controller action

Is there any way to pass multiple paramters by using params keyword to an action method with GET as below? http://.../Method/param1/param2/param3/..../paramN Action method should be as below: ...
0
votes
1answer
194 views

How to call a bean method when mouse over on a graphicImage?

I have the requirement that on mouse over of a <p:graphicImage> a JSF backing bean method should be called which will display some data dynamically. How can I achieve this? Please don't suggest ...
0
votes
3answers
223 views

Dependency Injection into an MVC action method

I'm wondering if this is possible. I have a typical MVC action method with a signature that looks like this: public ActionResult View(MyModel model) { IAnObject myObject = new AnObject(); ...
0
votes
0answers
143 views

Redirect loop in MVC

Hi all I have three controllers public class AccountController : Controller { ... } , public class HomeController : AdminBaseController { ... } and [AdminAuthorize(new[] { ...
1
vote
2answers
94 views

Bind a class with List properties from View to Action Method in MVC3

I have a controller HomeController with the following action method: public ActionResult DisplayData(MyViewModel myViewModel) { // Do something with myViewModel } The ViewModel: ...
1
vote
2answers
71 views

Adding a post outside of a form

I have a form in my razor view which works exactly as it should. I select values from the drop down and press the submit button and it return to me a paginated set of results. All well and good. ...
2
votes
1answer
279 views

Action method being called multiple times

I've just spotted something quite strange about an action method that is being called, via a simple click of a link, in my MVC 3 site. For some reason this action method is being called multiple ...
0
votes
2answers
135 views

How to organize controller class and action method?

Suppose I am working on a Car Portal. To search a new car, the user provides the following information: Brand Model ModelVersion FuelType Budget Business Rules: If user selects Brand only : Show ...
0
votes
1answer
224 views

passing model to action method in form

I have a view which look like this @model UI.Models.BidOnAuctionViewModel <script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script> <script ...
0
votes
2answers
276 views

mvc 3 - Automatically going to HttpPost

I have an action as follows: public ActionResult ChangeFeeCheck(string id) { ViewBag.id = id; return View(); } on my View, I have the following: @{ ...
0
votes
1answer
141 views

MVC action method and pipe in query string parameter

I have a call to a get action method with a list of query string parameters being passed to that method. A few of those parameters have a pipe '|' in them. The problem is that I cannot have action ...
0
votes
1answer
58 views

passing graphics object to action method

I need to pass the grapics object 'g' to the action method from the paint method. Something like this: public boolean action(Event event, Object obj) { Graphics g=getGraphics(); ...
0
votes
2answers
152 views

How to pass data from a form to controller using ASP.NET MVC

I have a form defined thus in a razor file. @using (Html.BeginForm()) { } Within this form I have fields such as <input type="text" readonly="readonly" name="MaxBudget" value="Any" ...
1
vote
2answers
158 views

MVC Autofac ExtensibleActionInvoker stops me using interface parameters

I have a problem with the Autofac ExtensibleActionInvoker interacting with the MVC ModelBinder when using interfaces for parameters. The background is as follows: I am building a MVC application and ...
0
votes
1answer
84 views

Empty Enumeration in post method

I have this view @model IEnumerable<ViewModelRound2> ... <snip> ... @{ using (Html.BeginForm(new { round1Ring3Bids = Model })) { if (Model != null && ...
0
votes
1answer
187 views

Passing data to post method

I have a view model that looks like this public class ViewModelRound2 { public Bid Bid { get; set; } public bool SelectedForRound2 { get; set; } } I have a get action ...
-1
votes
1answer
94 views

MVC Action has missing data

I send my viewmodel from my get action method to a view for update, the view has a submit button which takes returns control to the post action method. The viewmodel is of this form public class ...
0
votes
1answer
149 views

Rails 3 simultaneously rendering response of more than one action of a controller in another controller's view

Using Rails v 3.0.11, Ruby v 1.9.3 I have a page having link "Reports" on it, clicking on which invokes ReportsController#index class ReportsController < ApplicationController def index # ...
2
votes
4answers
15k views

MVC button click to action [duplicate]

Possible Duplicate: Mvc Html.ActionButton With ASP.NET MVC 3 I know how to create a link to an action method very easily but what I'd like to know is how do you make a button (when clicked) ...
1
vote
1answer
92 views

List passed to action method has no elements

I am passing a generic list of objects from a view page to an action method via an action link. The action link looks like this @Html.ActionLink("Click here", "Foo", new { a = Model.A }) The ...
0
votes
1answer
193 views

Generating CSV document via link

I have a link on a page and I'd like a "open or save csv file" dialog to appear when the user clicks on the link. The link points to an action method in which I generate a string representing valid ...
0
votes
3answers
123 views

When invoked with a jQuery $.ajax, what to return from the Action Method if things go ok?

Here's my code: [HttpPost] public ActionResult VoteChampionStrongAgainst(string championStrong, string againstChampion) { int champStrongId = int.Parse(championStrong); ...
0
votes
2answers
2k views

How to pass a list of objects instead of one object to a POST action method

I have the following GET and POST action methods:- public ActionResult Create(int visitid) { VisitLabResult vlr = new VisitLabResult(); vlr.DateTaken = DateTime.Now; ViewBag.LabTestID = ...
0
votes
1answer
719 views

Call action method and return new View using Javascript in MVC3

I have a scenario where I need to use javascript to call a action method using parameters and render the view that is returned by the action method. I have seen examples where action method is called ...
0
votes
3answers
49 views

Confused about how Controllers actually map to views in this case

I have these two URL's I want to make available to my users: /Account/Orders <- This would should be a grid of all orders. /Account/Orders/132 <- This would show this particular order ...
2
votes
1answer
210 views

Is this C# action method code actually firing a 301 redirect?

Here is the code I use when someone visits a product page on my ecommerce website. public ActionResult Details(int id, string slug) { using (var productRepository = new EfProductRepository()) ...
1
vote
1answer
629 views

What is the best way of calling an action method from another controller?

What is the best way to invoke an Action-method method in Controller A, from Action-method method in Controller B? Is it true to have such an invocation at all?
0
votes
3answers
898 views

Retrieve form data in action method : ASP.NET MVC 3

I am trying to use a simple form with only a text field to get some information that will be used in an action method to redirect to a different action method. Here's the context: I have a route ...
1
vote
1answer
455 views

Why is the MVC action method selector not choosing my HttpPut action?

Given the following route: context.MapRoute(null, "widgets", new { controller = "Widgets", action = "Add" }, new { httpMethod = new HttpMethodConstraint("PUT") }); And the following ...
1
vote
0answers
80 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=> ...
2
votes
1answer
127 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 ...
0
votes
2answers
685 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. ...
1
vote
1answer
982 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
600 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
2k 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 ...
2
votes
1answer
778 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 ...
0
votes
1answer
89 views

How to change the name of a View already mapped to an Action Method in ASP.NET MVC3

I have an ASP.NET MVC3 application developed with C# and Razor. I have a View, View1, mapped to and Action Method, ActionMethod1. In order to respect naming conventions I would like to rename View1 ...
6
votes
3answers
3k views

ASP .NET MVC NonAction meaning

Can anybody please tell me why should I use NonAction? I mean say I have a form with several submit values: Update, Delete or Insert. Since all the submit buttons have the same form in common I'm ...
0
votes
1answer
151 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
733 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 ...
3
votes
1answer
2k views

How should I return an Image from a controller action c# asp.net-mvc-2?

I am building images from a byte[] like below. public FileContentResult GetEmployeeImage(int empId) { MemoryStream ms = new MemoryStream(byteArray); Image returnImage = Image.FromStream(ms); ...
0
votes
3answers
3k 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 ...
1
vote
2answers
3k 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, ...
2
votes
1answer
415 views

Ambiguous action methods in MVC 2

I'm having some problems with ambiguous action methods in MVC 2. I've tried implementing the solution found here: ASP.NET MVC ambiguous action methods, but that simply gives me a "The resource cannot ...
0
votes
2answers
113 views

Need help designing to ASP.NET MVC action methods

I'm just starting out learning ASP.NET MVC 3. I've been going through the Music store sample on the ASP.NET website, as well as starting to develop my own site, but I'm having some trouble ...
0
votes
1answer
214 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 ...
4
votes
1answer
854 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" }) ...
3
votes
3answers
4k 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. ...

1 2