The tag has no wiki summary.

learn more… | top users | synonyms (1)

1
vote
0answers
26 views

How can I make my Dynamic Linq query more efficient

I've written an mvc controller function to handle dynamic queries, it's working great but with some more complicated queries it's really bogging down as much as 15 second response time. I used ...
1
vote
1answer
86 views

Asp.NET MVC4 - “Where do these go?”

I'm trying to make a C# ASP.NET MVC4 site. I'm really unsure of how I have my controllers file laid out. Here's how the file looks: namespace{ *Some Classes that'll be used by the controllers ...
0
votes
1answer
16 views

How to get action from which have been redirected?

Is there a way to get the name of the action from which I have been redirected inside a controller in ASP.NET MVC3? (By the way, without saving the name of the action in TempData nor Session)
1
vote
1answer
106 views

ASP.NET MVC: Call one controller action from another, with ActionFilters applied

Take a look at the code below. When Get() calls Foobar() and Foobaz(), the ActionFilters that decorate Foobar() and Foobaz() are not invoked. How can I call these other two controller actions from ...
0
votes
0answers
28 views

Setting masterpage dynamically in multi-tenant solution.

I created a multi tenant solution in .net mvc4 that works great. I only have one last issue left. I created my own controller with OnResultExecuting, this is good because it allows me to deal with ...
0
votes
0answers
160 views

Ajax call accepts json but controller returns html

So, I have been using $.getJson() successfully to grab data. In this instance, I needed to synchronously grab data from the server, so I used: $.ajax({ type: "GET", async: false, url: ...
0
votes
1answer
71 views

Routing to a controller from the Url address bar

By default all incoming calls go to the home controller. but what I'm trying to do is type in a different controller and go there. MVC4 www.mywebsite.com this will go to the home controller. ...
0
votes
1answer
124 views

Possible workaround to have multiple http get methods two actions with same name?

I am using asp.net MVC 4. Is there a way to use two http get methods on an action with the same name but different parameters? Or just a way to have the page be an index page for both so the name of ...
0
votes
1answer
75 views

MVC 4: passing single inherited models into the main model to a partial view

Am trying to figure this out. I have a major class called Foods. I have multiple classes that inherit from Food: Pizza, Sandwich, Meals etc... I created the database using Code First Approach. The ...
0
votes
1answer
239 views

Multiple parameters in asp.net MVC 4 controller

I'm using VS2010 and ASP.NET MVC 4 for my project. I need a controller that should get 2 parameters. this is my controller method: [AcceptVerbs(HttpVerbs.Get)] public ActionResult AcceptBid(int? Id, ...
1
vote
1answer
80 views

Forcing an mvc route for a controller

I have the following two routes defined within my applications. routes.MapRoute( "ApplicationRoutes", "{language}-{country}/{userid}/{controller}/{action}/{id}", ...
6
votes
1answer
492 views

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, i.e. ProductController or ProductsController?
0
votes
2answers
226 views

How to pass a list of objects to a [HTTPPost]controller parameter, in ASP.Net MVC?

i have the next view: @model IEnumerable<L5ERP.Model.BLL.BusinessObjects.MTR_MonthlyTransfer> @using (Html.BeginForm("ExpenseMonthlyTransferProcessing", "BudgetTransfer", Model.ToList())){ ...
0
votes
2answers
247 views

MVC 3 Uploading File - Null File in Controller

I don't know what I'm missing, but I need to upload a file using C# MVC 3. I followed instructions here in SO, but the file is always empty. Here is my actual testing code: HTML @using ...
0
votes
1answer
72 views

Patterns for creating MVCControllers from EF Repositories

[This blog post titled: 'Passing multiple Include statements into a Repository' provides a great overview of how to control the depth of loaded children when hydrating an EF dbContext-based object. A ...
1
vote
1answer
61 views

update modelobject in a controller

I am trying to update user in my model object public ActionResult AddJob(JobQueue job,HttpPostedFileBase file) { job.User = "itdev"; TryUpdateModel(job) if ...
1
vote
3answers
342 views

Serialized JSON Object appearing as Null at controller

I have a stringified JSON object that appears properly in an alert, appears properly in the post section in the browser debugger, but in the controller it appears as null. I'm not sure how it is ...
2
votes
1answer
227 views

Why am I getting a 404 error when accessing a controller method in Ajax? [closed]

I have a controller ValidationController and it has a method called EmailExist I have an ajax call $.ajax({ type: "POST", url: "/Validation/EmailExist", data: { 'Email': ...
2
votes
1answer
1k views

mvc httppost href parameters

I'm currently working in ASP.NET MVC 4 with EF 4.0. I have an unordered list with listitems. Each listitem contains a name and address and is clickable. Now I want to make it so that, when I click the ...
1
vote
1answer
249 views

retrieving Checkbox value within an MVC controller

I have the following code to include a checkbox to show deleted items as part of a list: <input name="DeletedItems" value="ShowDeleted" type="checkbox"> <label ...
0
votes
0answers
408 views

Retrieving Images from Blob Storage to set set them in view

I am using the following piece of code from blob tutorial at https://www.windowsazure.com/en-us/develop/net/how-to-guides/blob-storage/#configure-access I was successfully able to upload the image ...
0
votes
4answers
126 views

Common method among multiple controllers

I have a common method among multiple controllers, not all. Is correct to put the method in a controller base and all other controllers inherit it? public class BaseController : Controller { ...
1
vote
3answers
56 views

Is it ok to place controllers in model folder?

Since I basically have a model per view. I arrange my models in sub folders under the model folder after the controller name. /Models/News. I have also decided to move my controllers into these ...
0
votes
1answer
636 views

How to return an error to ValidationSummry in MVC 3

I have an idea which I dont know how to implement. In MVC 3 controller I have an if statement, and I want the controller to return an error message if the if statement fails. And I have a ...
2
votes
1answer
620 views

How to render XML data from controller to view efficiently

I am working on a project that requires that I render XML data (that would be my model). Its basically going to be represented in a row - column format similar to your standard database ...
0
votes
2answers
226 views

Lots of hidden divs to display in an ASP.NET MVC page with jQuery dialogs. Should I use partial views?

I've been working on my first major ASP.NET MVC application (plus lots of jQuery) for a month or so now and I'm pretty happy with it. I have a page that looks something like this. (Actual data changed ...
3
votes
2answers
5k views

MVC 3 Layout and Controllers

I m building a MVC 3 applications. The application should be able to display a different layout according to the sub domaine (ex: customer1.mysite.com -> layout1; customer2.mysite.com -> layout2; ...
2
votes
5answers
894 views

allow hyphens in URLs for asp.net mvc 2 controller names

[ActionName("about-us")] public ActionResult EditDetails(int id) { // your code } The above works for actions but I would like to be able to do the same (or similar) for controllers, ie have a ...
3
votes
3answers
447 views

keeping asp.net mvc controller size down

I have a Controller. "OrderController". Currently it's 1800 lines. I like to reduce the size. I'm using static helper methods which is fine but i'm using ninject to call my repositories so don't have ...
1
vote
1answer
1k views

MVC 3 AJAX Function Post Two Times

I am using Visual Studio 2010 and MVC 3 with AJAX/JQuery. The issue I am having is that the code is posting something twice. It only happens when you post something, then do it again. Here is my JS: ...
2
votes
1answer
1k views

How to use areas with controllers from a different assembly?

I'm starting a new ASP.NET MVC project, and I decided to put my controllers in a different assembly. Evertyhing works fine, but I have hit a problem: I created a new area in my MVC Project, called ...
1
vote
1answer
481 views

MVC Unit Testing Controller Method with FormCollection argument

I am having a controller method which accepts FormCollection as a parameter. the controller method then builds the model using UpdateModel(Model, new[] { P1, P2 }); I would like to unit test the ...
1
vote
2answers
481 views

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 up alternate "Services" folder with controllers used only for web services returning xml or json. ...
1
vote
0answers
262 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", ...
0
votes
1answer
52 views

What to return if a controller cannot be found?

I just encountered an error in an MVC app I'm building because the browser requested /favicon.ico which matches a route, but for which there is no controller. What is the recommended way of handling ...
2
votes
2answers
267 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 ...
10
votes
3answers
3k 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 ...
1
vote
1answer
719 views

Use RedirectToAction in a JsonResult Action?

using ASP.NET MVC 1.0 and I have a action that returns a JsonResult and I need to redirect another action that also returns a JsonResult action type. The problem is the RedirectToAction() returns a ...
1
vote
2answers
75 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 ...
5
votes
1answer
822 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 ...