Controller provides a centralized entry point for handling requests. Usually is referred as a part of Model-View-Controller design pattern.

learn more… | top users | synonyms

158
votes
13answers
59k views

Can an ASP.Net MVC controller return an Image?

Can I create a Controller that simply returns an image asset? I would like to route this logic through a controller, whenever a url such as the following is requested: ...
7
votes
2answers
9k views

Real example of TryUpdateModel, ASP .NET MVC 3

I can't understand, how to use TryUpdateModel and save the MVC architecture at the same time. If I am not mistaken, work with datacontexts must be in the Model. So, such code var db=new ...
48
votes
5answers
15k views

ASP.NET MVC - Should business logic exist in controllers?

Derik Whitaker posted an article a couple of days ago that hit a point that I've been curious about for some time: should business logic exist in controllers? So far all the ASP.NET MVC demos I've ...
39
votes
4answers
7k views

Fat models, skinny controllers and the MVC design pattern

I just read a blog post that explains MVC with a banking analogy. I have a few months of experience with web application development with an MVC framework (CakePHP), so I get the basics, but I began ...
3
votes
1answer
3k views

Multiple FXML with Controllers, share object

Goodevening everyone, I have found a bunch of posts already on this topic but I still can not manage to pass an object from Controller1 to Controller2. Is there somewhere a full tutorial or some ...
1
vote
1answer
2k views

Having troubles calling a Controller Post Method

Here's my method [AcceptVerbs(HttpVerbs.Post)] public void SaveImage(FormCollection formValues) { byte[] contents = Convert.FromBase64String(Request.Form["file"]); ...
30
votes
5answers
23k views

Downloading a file from spring controllers

I have a requirement where I need to download a PDF from the website, the PDF needs to be generated within the code, which II thought would be a combination of freemarker and a PDF generation ...
7
votes
6answers
4k views

What are good candidates for base controller class in ASP.NET MVC?

I've seen a lot of people talk about using base controllers in their ASP.NET MVC projects. The typical examples I've seen do this for logging or maybe CRUD scaffolding. What are some other good uses ...
23
votes
4answers
7k views

Rails action caching with querystring parameters

How can I cache my REST controller with Rails where my actions have query string parameters? Example: GET /products/all.xml?max_price=200 Thx!
19
votes
2answers
6k views

How to create a strongly typed master page using a base controller in ASP.NET MVC

Following the NerdDinners example, I am interested in creating a strongly typed Master Page. In order to achieve this, I use a base controller which retrieves the data for the master page. All other ...
7
votes
4answers
10k views

Binding a Grails date from params in a controller

Why is it so hard to extract the date from the view via the params in a grails controller? I don't want to extract the date by hand like this: instance.dateX = ...
22
votes
1answer
10k views

ASP.NET MVC - Set ViewData for masterpage in base controller

I'm using a masterpage in my ASP.NET MVC project. This masterpage expects some ViewData to be present, which displays this on every page. If I don't set this ViewData key in my controllers, I get an ...
8
votes
4answers
3k views

Rails: Skinny Controller vs. Fat Model, or should I make my Controller Anorexic?

I know similar questions have been answered before - such as: Where should logic go, where to do certain tasks, etc. But I have a more specific question - How far should I take this axiom: "keep your ...
18
votes
3answers
8k views

Can Spring Security use @PreAuthorize on Spring controllers methods?

Can Spring Security use @PreAuthorize on Spring controllers methods?
14
votes
5answers
617 views

What is the right way to handle $_POST data in MVC?

I have the common MVC situation in my PHP system: the Controller receive a request from the View containing $_POST data. Now I have three ways to handle the data: a) The Controller only calls the ...
23
votes
7answers
17k views

In Spring MVC, how can I set the mime type header when using @ResponseBody

I have a Spring MVC Controller that returns a JSON String and I would like to set the mimetype to application/json. How can I do that? @RequestMapping(method=RequestMethod.GET, value="foo/bar") ...
30
votes
6answers
12k views

Is it possible to determine whether ViewController is presented as Modal?

Is it possible to check inside ViewController class that it is presented as modal view controller?
21
votes
4answers
32k views

Passing multiple parameters to controller in ASP.NET MVC; also, generating on-the-fly queries in LINQ-to-SQL

I'm working on a basic Issue Management System in order to learn ASP.NET MVC. I've gotten it up and running to a fairly decent level but I've run into a problem. I have a controller named Issue with ...
4
votes
3answers
8k views

accessing Spring MVC DI beans from jsp

Im bit confused so be patient if im trying to do something wrong : -) In some MVC frameworks you can call controller action from the view if you whish to execute some code and render some partial ...
3
votes
2answers
2k views

How to find all controllers in Spring MVC?

To provide some runtime generated API documentation I want to iterate over all Spring MVC controllers. All controllers are annotated with the Spring @Controller annotation. Currently I do it like ...
13
votes
4answers
5k views

ASP.NET MVC Programatically Get a List of Controllers

In ASP.NET MVC is there a way to enumerate the controllers through code and get their name? example: AccountController HomeController PersonController would give me a list such as: Account, Home, ...
6
votes
2answers
2k views

Accessing the list of Controllers/Actions in an ASP.NET MVC application

We know that behind the scenes, the ASP.NET MVC framework will use reflection to determine what controllers/actions are available to be executed, based on which classes derive from ...
7
votes
2answers
982 views

Where to render comments controller in Rails on model validations failure?

I have a simple Video model in my rails app that has_many comments. I am displaying these comments on the video's show page. When I submit the form everything works fine; however, if there are ...
3
votes
2answers
5k views

ASP.NET MVC 3 controller .Json method serialization doesn't look at DataMember Name attribure

In my class i've got: [DataMember(Name = "jsonMemberName", EmitDefaultValue = false, IsRequired = false)] public List<string> Member { get; set; } After passing the object through ...
10
votes
5answers
4k views

In asp.net mvc is it possible to make a generic controller?

I'm attempting to create a generic controller, ie: public class MyController<T> : Controller where T : SomeType { ... } However, when I try to use it, I'm running into this error ...
10
votes
3answers
10k views

codeigniter check for user session in every controller

I have this private session in one of my controllers that checks if a user is logged in: function _is_logged_in() { $user = $this->session->userdata('user_data'); if (!isset($user)) { ...
5
votes
3answers
5k views

Spring 3 MVC @Controller with AOP interceptors?

Anyone knows why apparently it is not possible to use AOP with annotated MVC Controllers? (see Post). I have a @Controller that stops working as soon as I add a pointcut to it. The problem is not that ...
4
votes
2answers
8k views

Using more than one controller with ExtJS 4 MVC

Let's say I have a main controller, then my application has a controller for each "module". This main controller contains the viewport, then a header (with a menu) + a "centered" container, which is ...
6
votes
1answer
6k views

Argh! Why does System.Web.Mvc.HandleErrorInfo get passed to my views?

I'm experiencing a rather frustrating problem. My MVC site runs fine for the most part, but randomly throws an error (which shows a friendly error to the user). When I check the logs, this is what I ...
4
votes
2answers
2k views

change controller name convention in ASP.NET MVC

Is there a way to change the naming convention for controllers in ASP.NET MVC? What I want is to name my controllers InicioControlador instead of InicioController, or better yet, use a prefix instead ...
1
vote
1answer
163 views

How can I use a variable from another Controller in JavaFX

I have two scenes Login.fxml and MainView.fxml and two diferent controllers LoginController.java and MainViewControler.java In LoginController I do the whole process to login and get the value of ...
1
vote
3answers
2k views

setting the filename for a downloaded file in a rails application

I have a controller action that allows a user to download a file with an extension of .ppt . It's not really a powerpoint binary, just an xml-ish format that powerpoint can read. the file is ...
57
votes
7answers
16k views

Multiple types were found that match the controller named 'Home'

I currently have two unrelated MVC3 projects hosted online. One works fine, the other doesn't work, giving me the error: Multiple types were found that match the controller named 'Home'. This ...
3
votes
3answers
4k views

How can I run symfony 2 run command from controller

I'm wondering how can I run Symfony 2 command from browser query or from controller. Its because I don't have any possibility on hosting to run it and every cron jobs are setted by admin. I don't ...
7
votes
2answers
7k views

Rails current_page? versus controller.controller_name

I'm implementing current_page? in a view to test if the current controller and action is equal to a certain value, however it won't return true when on that controller/action combination. - if ...
11
votes
4answers
4k views

Pass data back to the previous controller

I have two controllers in the storyboard, embedded in a NavigationController, and there is a segue to switch between these. Passing data from the first controller to the second one is pretty ...
8
votes
4answers
2k views

rails page titles

I don't like the way rails does page titles by default (just uses the controller name), so I'm working on a new way of doing it like so: application controller: def page_title "Default Title ...
14
votes
2answers
20k views

Is the Rails update_attributes method the best choice for doing an update of a model in the database?

def update @album = Album.find(params[:id]) if @album.update_attributes(params[:album]) redirect_to(:action=>'list') else render(:action=>'edit') end end A Rails 1.1.6 ...
17
votes
3answers
3k views

Unit testing my controller method results in an empty ViewName?

I'm doing some simple MS unit tests on my standard, nothing special controller. When i check the ViewName proprty, from the returned ViewResult object, it's "" (empty). I'm under the impression that ...
16
votes
5answers
34k views

Spring-MVC Problem using @Controller on controller implementing an interface

I'm using spring 2.5 and annotations to configure my spring-mvc web context. Unfortunately, I am unable to get the following to work. I'm not sure if this is a bug (seems like it) or if there is a ...
8
votes
6answers
12k views

Breadcrumbs in Ruby on Rails

I'm slightly insecure about my breadcrumb solution. Names and links are defined in each controller action: <a href="http://localhost:3000/">Home</a> <% if defined? @l1_link %> ...
3
votes
4answers
23k views

MediaController with MediaPlayer

I want media controls such as play/pause for streaming audio that I am playing in my app. I am using MediaPlayer to stream and play the audio. Can someone provide a code snippet on how to use ...
11
votes
3answers
2k views

ASP.NET MVC OutputCache doesn't work for root URI

I'm learning ASP.NET MVC and bugged by one issue. In the HomeController, the Index action has OutputCache attribute, but it seems doesn't work. [HandleError] public class HomeController : Controller ...
6
votes
1answer
2k views

When should one use asynchronous controller in asp.net mvc 2?

Thus far worked with asp.net mvc1 and just started with asp.net mvc2..... what are good candidates for executing a controller asynchronously? Should i use it for long running process or some ...
4
votes
1answer
3k views

How to JUnit tests a @PreAuthorize annotation and its spring EL specified by a spring MVC Controller?

I've defined this method in my Spring MVC Controller : @RequestMapping(value = "{id}/content", method=RequestMethod.POST) @PreAuthorize("principal.user.userAccount instanceof ...
22
votes
3answers
7k views

ASP.NET MVC Controller Lifecycle

It's my understanding that the constructor for a controller is not called during each web request. Assuming this is true, what is the lifecycle of a controller? Is is "constructed" upon app start, ...
12
votes
4answers
485 views

BestPractices: Is it acceptable to use more than one repository in a MVC-Controller?

I have a many-to-many assocition between an Employee and a Team. Foreach entity I have a repository. Now I use ASP.NET MVC and I created a EmployeeController. I also created a View to edit an ...
9
votes
1answer
2k views

asp.net mvc generic controller

I am thinking of implementing a generic Controller in ASP.NET MVC. PlatformObjectController<T> where T is a (generated) platform object. Is this possible? Is there experience / ...
8
votes
3answers
10k views

One controller rendering using another controller's views

I have QuestionController I now have AnotherQuestionController with actions which should render using templates and partials in app/views/question/ Is this possible? Seems like it should be. I've ...
27
votes
2answers
23k views

.NET MVC - Call a controller Action from another controller action

I have a controller action which I would like to call another controller action. Is this a valid thing to do. Is it possible?

1 2 3 4 5 7