0
votes
3answers
49 views
View in MVC, what is a layout and how to create one
I dont understand what the layout is, in the view. I asked a question previously on the subject of templating in PHP, but I still dont quite understand. I assume that you create a general layout for …
3
votes
5answers
191 views
How does one implement UI independent applications?
What are the fundamental techniques to make most part of my C# source code UI independent?
For example, I would like to write my source code for Winforms desktop application which I shall be able to …
1
vote
3answers
46 views
Zend Framework: Controller class == Page?
Am I right in thinking that in Zend Framework, if I plan to have 5 pages at my site, I'd generally need 5 controllers? Do ZF developers typically create 1 controller per page ("page" as abtract app …
0
votes
1answer
15 views
ASP.Net MVC - Showing Model data based on Roles
Hi,
I have a View which needs to show and hide details based on the users role. I have 2 options
using an inline if statement in the View to show and hide details
Create multiple partial views and …
0
votes
1answer
17 views
Creating a simple custom view in SugarCRM
Hey!
I am trying to use the MVC architecture of sugarcrm to add a new action and with that a new view.
I have managed to create a controller with the action and also a class view, the only thing I …
0
votes
5answers
77 views
Get url from html code using Regex
<div><a href="http://anirudhagupta.blogspot.com/">Anirudha Web blog</a></div>
What is the Regular Expression to get http://anirudhagupta.blogspot.com/
from
<div><a …
1
vote
0answers
12 views
MVC - How to store/assign roles of authenticated users
I am upgrading a site to use MVC and am looking for the best way to setup Authenication.
At this point i have the login working off of Active Directory, validating a username and password and then …
2
votes
4answers
87 views
Does an ‘Email’ class belong in model or view?
I have a User class in the model and need to send a password reminder email.
Does the controller instantiate a User and pass it (or values from it, rather) to a Email class in the view? In which …
0
votes
1answer
24 views
ASP .NET MVC; return HTML along with JavaScript
Hello,
I have a partial view which renders a table.
On page load, I am using JQuery to perform Zebra Stripping on it.
Whenever ajax refreshes the table, DOM elements are updated, but since JQuery …
0
votes
1answer
40 views
pass values from the view to the controller ruby on rails
Hi
This is my controller:
def addcar
@car = Car.new(params[:car])
render :action => "list"
end
this is my view:
<%(@allcars).each do |cell|%>
<p><%= link_to …
0
votes
5answers
70 views
creating a controller in Rails
I'm trying to use the generate script to create a controller. I run the following command:
> ruby script/generate controller Greeting
and the controller seems to be generated no problem. Then I …
1
vote
5answers
43 views
Getting an error when trying to load a model
I'm loading a model for my CodeIgniter based website, but it keeps giving an error:
"Fatal error: Call to a member function on a non-object in …
2
votes
3answers
72 views
+100
ASP.NET MVC - Partially updating model from view
I just wondered how people were approaching this situation. It's something that seems like a weak point in my usage of MVC with ORMs (NHibernate in this case)...
Say you have a fine-grained and …
2
votes
2answers
59 views
Spring MVC very confused about controller mappings
Using annotation-based controller mappings.
@Controller
public class AlertsController {
@RequestMapping(value="create", method=RequestMethod.GET)
public void create(HttpServletRequest request, …
0
votes
2answers
43 views
MVC 2 Beta DefaultControllerFactory with Areas
Why default factory WON'T return full name of the controllers (with namespaces)?
I'm using Service Locator and autofac.
using System.Web.Mvc;
using Microsoft.Practices.ServiceLocation;
namespace …
