mvc

Struts redirect from model

I'm trying to implement a security model where the model of secured pages inherits from a SecureSupport. I don't know how or if I can redirect from a constructor, however. See below: public class SecureSupport extends ActionSupport { private Map session; public SecureSupport throws Exception { session = ActionContext....

Cannot instantiate a PDO object in PHP MVC framework

Hello, Can anyone help me with this? I have this function in a singleton class. The error it is giving me back is that it cannot find the class. First I thought it had something to do with the autoloader, but I did spl_autoload_unregister('libloader') and it still gives the same error? The host is running php 5. public static functi...

MVC for footer-header-sidebar at codeigniter.

Hi friends, I use codeigniter. I have footer_view.php, header_view.php and other view php files for pages like aboutus, contactus, etc... for example for about us page, I create model for db actions, than I create a controller to get db variables and send variable to about us view as: $this->load->view('aboutus/',$data); everthing is...

MVC evolution and improvements

Hi there I just found the MVC was initially proposed in 88 [here is the pdf file] but unfortunately ASP.NET just recently implement it. Do you know which is the most used MVC design pattern in the our days frameworks? I'm curious to know how MVC has evolved during the times and which is the best approach(what make it a good approach)?...

Best way to make Admin pages in MVC?

I'm working on an app in CodeIgniter, and I want to have admin pages for several of the objects in the application, and I'm wondering what would be the better way to put these into an MVC structure. Idea 1: In each controller, have an admin function, and add all of the admin pages I would like into that function. example URL: domain.co...

using jqgrid style for usual Table in asp.net mvc

I'd prefer using Table and td instead of JqGrid but i like JqGrid styles. has anyone used jqgrid style for usual Grid of asp.net MVC(i mean Table and td) before? ...

registering event listeners in a controller

I'm working on creating a simple MCV application, in order to understand MVC better. The problem I'm having is registering event listeners. The way I see MVC is that the view dispatches events, the controller listens for these events and acts on them, either updating the model or amending the view. So in my MVC app I have a controller wh...

Writing files in App_Data causes tempdata to be null

I have a small asp.net MVC 1 web app that can store files and create directories in the App_Data directory. When the write operation succeeds, I add a message to the tempdata and do a redirectToRoute. The problem is that the tempdata is null when the action is executed. If i write the files in a directory outside of the web applications ...

Python/Django Model overriding the cleaned data

Hello I am currently working on a django project, in one of my Models I have a file upload and image upload, with the parameters of these two fields both are set to blank=True, however there is a stipulatation with this and it is that field can only be blank if one of the two is not, so for example, if the imagefield is complete then the...

Php: functional style, light-weight alternatives to the separation of concerns in OO MVC patterns?

The problem: I have a legacy php app that is coded in no particular style (some OO, function libraries, some templates, no templates), which I am slowly rewriting, cleaning up, and adding to. When I introduced templates to the system, it was immediately evident that that would really clean up and simplify the code a lot because of th...

PHP MVC Best Practices/"Rules" for Success

I'm sure that someone already posted this question; however, I would like to get all kind of recommendations for MVC on PHP. I know there are many experts out there willing to share their knowledge with people who has doubts about their coding best practices. How should you organize your Controller? How should you organize your Model? ...

How to make only single database query when accessing Linq to SQL IEnumerable object?

My application constructs a Linq To Sql query and then populates a model which is then passed to the view. The view then accesses the IEnumerable object (from the Linq to Sql query) to display the user interface. The problem I am having is that each time the View accesses the IEnumerable object from the model, the linq to sql database ...

In MVC (eg. Django) what's the best place to put you heavy logic?

In MVC architecture lets consider django: I have a method to calculate best employee of the year (1000 lines of code with a complex logic), where should I define it and who will call it? Thanks ...

How do you serve vanilla/custom pages in an MVC based site?

Let's say you've setup your site using Pylons, Django and most of the site runs fine and according to the framework used. However, what if you had a custom section that was entirely say, composed of flat html files and its own set of images, which you didn't have time to actually incorporate using the framework and were forced to basical...

Rewrite to index.php best practices

I notice that there are a few common ways to setup RewriteRules for MVC based PHP applications. Most of which contain: RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-d Followed by a RewriteRule: RewriteRule ^(.*)$ /index.php?$1 [L,QSA] or RewriteRule .* /index.php/$0 [PT,L] ...

Zend Framework / MVC: What type of objects to push to the View?

Hey guys - here's a question on Zend Framework or better on MVC in general: I am asking myself for a quiet a long time now, if it is a good idea to push business objects (User, Team, etc.) to my views or if it would be better just to push dump data containers such as arrays to the view for rendering. When pushing business objects to m...

Show message box with form entries on submitting the from in asp.net mvc

I have a form which takes multiple inputs from user. Now I wanna show the inputs in a confirmation dialog and submit the form if user clicks OK. CanI use jQuery here?? ...

Sending URLs/paths to ASP.NET MVC controller actions

Based on various sources it is apparently impossible to send a path like this "/Content/Scripts/jquery.js" as a parameter to MVC action, because forward slashes are used as parameter delimiters "/" and ASP.NET MVC returns 400 Error. The only working solution I found so far was to Base64 encode such string, send this as a parameter value...

is creating the model as a singleton the only way to share data in the mode between views

Hi, I'm creating a MVC base application, in the past I've alwaysed use Cairngorm as the framework for my Flex applications. For this app I'm experimenting with other approaches to mvc, not other frameworks (pureMVC or Mate), but writing my own MVC base application. My question is in Cairngorm I've always created the model as a singleto...

Cross-Cutting Concerns in SOA architecture

i have several classes in my service layer. i want to before call methods of these(every class),call they method of a spesific class after the spesific class call them.how is that possible in c#? example at ASP.NET MVC : CONTROLLER CLASESES -> A SPESIFIC CLASS -> SERVICE CLASSES because i need to central logging,exception handling,ch...