1
vote
2answers
26 views
MVC Pattern in cakephp
Could someone explain me about MVC pattern? How does it help cakephp framework?
0
votes
4answers
63 views
ASP.NET MVC fuzzy path to the pit of success?
I'm interested in adding ASP.NET MVC to my skillset. However my reticence comes from the fact that there seems to be a lot of "fuzziness" when people talk about implementing appli …
0
votes
1answer
24 views
How to carry out MVC in developing html/js/css?
Is it possible?
The ultimate goal I want to achieve is that:
When I want to add a new feature to a page,just do something like:
importhtml(html.file);
importcss(css.file);
impor …
0
votes
1answer
12 views
IgnoreRoute in ASP.MVC
Hi,
I am trying to access a .js file in the views directory.
I have an MVC application with /Views/Home/MyControl.ascx
I have a js file /Views/Home/MyControl.js
I wish to referen …
1
vote
5answers
46 views
MVC-Pattern enabling buttons on event in Java
Hey,
I'm getting started with the MVC-Pattern right now and have something I'm pondering about. Imagine following case:
I've got a view (obviously). In this view the User can sel …
1
vote
2answers
61 views
Generate PDF files from asp.net mvc
I'd like to print receipts from my asp.net mvc app. For now I think my best option is to create PDF files, which are easier to handle when they are going to print them, because of …
0
votes
1answer
36 views
How to display a matrix in Html
Hi.
I have 3 classes:
class R{ string NameR;}
class A{ string NameA;}
Class RP
{
R objR;
A objA;
bool result;
}
I use NHibernate so in DB I have a table RP:
[Id] [int] IDE …
2
votes
5answers
101 views
Architecture of very complex php applications ?
I want to know which php architecture strategies developers use in complex php applications . So far , i know the mvc structure which consists of models, views and controller (and …
4
votes
4answers
111 views
Which .net architecture should I implement for 10,000 concurrent users for web application
Hello experts,
I need to create a web application for tasks delegation, monitor and generate reports for a organization.
I am thinking about ASP.Net and MVC should be the archi …
0
votes
1answer
58 views
Displaying a image from a database in asp.net mvc
Hi all,
I have a view which contains a users id and an image column.
Here's what i've tried doing to retrieve the image but i keep getting a box with an red x instead of the actu …
1
vote
1answer
30 views
How does Url.Action work Asp.net MVC?
This is somewhat related to another question i've asked but i figure why not ask it seperately.
If i were to place something like the following in aview
<td><img src='&l …
0
votes
1answer
32 views
controller member
In my mvc application, i'm having a controller where many actions are their.
I'm having a property for the controller class.
In index controller i'm setting the value for the pro …
1
vote
4answers
77 views
How do I move from C#/ASP to Ruby?
I have recently designed a web application that I would like to write in Ruby. Coming from a ASP background I designed it with method and fields and linked them together (in my dia …
2
votes
2answers
22 views
Unable to generate a custom path in ASP.NET MVC Master Pages.
I am working in an ASP.NET MasterPage and am having trouble with <link href="..." />.
I am trying to substitute in a stylesheet with a specific name:
<link href="/Conten …
0
votes
2answers
35 views
Controller folders and the new Autoloader in Zend Framework
After introduction of Autoloader, I started to port existing ZF app.
The immediate error was that IndexController was extended by BaseController,
which is now cannot be found, alth …
