The mvc-framework tag has no wiki summary.
0
votes
2answers
130 views
Angularjs - what I'm doing wrong with injections?
In my previous question I got an answer hot to inject dependencies and while I tested it, everything worked well. Then I refactored the code and wanted to start the app implementation, but the ...
0
votes
2answers
234 views
Why don't things just work in angularjs? [closed]
While angularJs is exciting, things just don't seem to work in angular if you move beyond their todo app. One always has to take care of something that only the developers of angular seem to know.
If ...
0
votes
0answers
110 views
form authentication with mvc framework
I am trying to do form Authentication with mvc framework,but if I login and copy the url and logout from page and open in other browser or tab it should go to login page but its redirected to page ...
1
vote
4answers
383 views
Java MVC framework comparable to that of .NET or PHP [closed]
I'm looking for a web framework for Java that is similar to that of .NET MVC3 or like one of the top used PHP frameworks.
The basic idea i'm looking for is that a given URL is mapped to a ...
0
votes
1answer
441 views
best MVC framework for Adobe Flex
I need to develop a web conferencing app in Adobe flex, was actually confuse about the MVC framework I can use I have done a some research and found two main contenders
1- Robot Legs
2- Cairngorm
...
0
votes
2answers
177 views
Code organization with js-mvc framework
I want to write a simple web application
it looks like:
--------------------------------------------------------------------------
+Friends | Here we have a few different pages
John ...
0
votes
3answers
287 views
Are there any Ruby MVC web frameworks with great support for logic-less templates?
I've been on the hunt for a Ruby MVC web framework with support for logic-less templates (i.e. Mustache) for a while now. I'm looking for this:
Support for routing paths and HTTP methods
Concept of ...
0
votes
1answer
829 views
PHP ob_start called twice, won't flush correctly now
I have written a MVC-framework and I am using ob_start('error_handler') to be able to catch fatal errors aswell. This works great!
In boot.php
// Start the error-logging
ob_start( 'error_logging' );
...
0
votes
3answers
247 views
A good book about new versions of django and Rails? [closed]
I want good books about these frameworks, but not the old versions. Some books are very outdated... =P
0
votes
0answers
305 views
MVC Framework: Client-Side or Server-Side or Both? [closed]
Problem Context:
I am working on a large-scale web-based application.
The main features of the application would be:
1. Cater to thousands of users, simultaneoulsy.
2. Real-time and Collaborative in ...
0
votes
1answer
107 views
To use interceptors or not interceptors in MVC application framework?
Does using interceptors for controlling the flow of events in a MVC framework == business logic coupled with, or leaked to, the framework?
Is that something one should even worry about? Doesn't seem ...
4
votes
2answers
670 views
PHP MVC/ORM Frameworks that are Hyper PHP (HipHop) Ready
Is there a good list of the PHP MVC/ORM Frameworks that will work with Facebook's HipHop?
0
votes
3answers
156 views
When Rails require mod_rails, what about Django, TurboGears, Symfony, CakePHP? Can they deploy using mod_python and mod_php?
When Rails applications seem hard to deploy (or used to be), what about Django, TurboGears, Symfony, CakePHP -- can they be simply deployed using mod_python or mod_php? Actually, won't it need ...
8
votes
7answers
541 views
My first .net web app - should I go straight to MVC framework (c.f. ASP.net)
I'm done some WinForms work in C# but now moving to have to develop a web application front end in .NET (C#). I have experience developing web apps in Ruby on Rails (& a little with Java with JSP ...
2
votes
6answers
581 views
Ajax requests, through MVC Framework (e.g. ColdBox) or not?
Do you fire ajax requests through the MVC framework of choice, or directly to the CFC?
I'm leaning towards bypassing the MVC, since I need no 'View' from the ajax request.
What are the pro's of ...
4
votes
9answers
1k views
Which PHP MVC Framework for the enterprise; CakePHP or Symfony?
I'm about to begin building a huge clinical healthcare application with PHP, and I'm looking for some advice on a framework. I need to be able to come up with a quick prototype, so it's important that ...
3
votes
2answers
887 views
MVC framework for huge Java EE application
Which MVC-framework is the best option (performance/ease of development) for a web application, that will have + 2 million visits per week.
Basically the site is a search engine,but also there will ...
11
votes
12answers
7k views
Suggest some good MVC framework in perl
Can you suggest some good MVC framework for perl -- one I am aware of is catalyst
The need is to be able to expose services on the perl infrastructure which can be called by Java/.Net applications ...
77
votes
10answers
32k views
Looking for a MVC Sample for WinForms
Can you point me to a good real-world WinForms MVC application/framework?
I understand the Model part - that's your data, and I know the forms are the views, but what's the controller? Especially ...