Tagged Questions

0
votes
1answer
9 views

Presentation technology for multiple devices

Our application is supposed to serve multiple devices, from simple to smart-phones, IPhones, touch-screens to normal browsers. Application is layered, so we can reuse the business and persistence …
0
votes
1answer
30 views

Refactoring a legacy WebForms app to better separation of concerns.

i.e. Is MVP still the next best choice when MVC is not an option? I thought I'd ask this here as I'm sure there are others like me who don't have the luxury of being on a green-field project and want …
0
votes
1answer
121 views

What WinForm Control To Bind List(Of T)?

I have been working on keeping things object oriented for my project. Currently, I'm using a .DLL which supplies all of the app's classes to the WinForms project acting as the presentation layer. My …
16
votes
11answers
666 views

Why should I isolate my domain entities from my presentation layer?

One part of domain-driven design that there doesn't seem to be a lot of detail on, is how and why you should isolate your domain model from your interface. I'm trying to convince my colleagues that …
0
votes
1answer
81 views

Presentation Layer Objects

Should a Presentation Layer be split into presenting and receiving objects Or single objects that handle data in both directions?
1
vote
2answers
239 views

When to use @ in a Rails View and when to use a symbol?

<% form_tag(:action=>'update', :id=>@album.id) do %> Title: <%= text_field(:album, :title) %><br> Artist: <%= text_field(:album, :artist) %><br> Genre: …
6
votes
8answers
1k views

Pros and Cons of Various Java Web Presentation Layer Technologies

I'm currently working on a web app that makes heavy use of JSF and IceFaces. We've had some discussions of moving to another presentation layer, and I thought I'd take the discussion out into SO and …
1
vote
4answers
557 views

Simple Elegant pattern to separate Data Access, Business logic and presentation

I need a simple pattern to do the above. Few things to note: 1) I have a class that I am obliged to use that does the actual data retrieving and it return DataTable 2) I am not concerned with the …
2
votes
5answers
860 views

ASP.Net MVC and N-Tier

Greetings, Apologies in advance that I have not researched this toughly enough to answer the question myself, but I imagine it would take me some time and I would rather know now before I invest …
3
votes
2answers
567 views

Best way to separate Business from Presentation Logic?

I want to create a game that will work both locally and online. My first thought was to create an interface that would have all the methods that will be needed by the GUI for the business logic and …
0
votes
5answers
1k views

CSS: Fixed or Float Layout?

My question revolves around CSS Fixed Layout vs a Float Layout that extends to fill the width of the browser. Right now the issue I'm running into is to have the masthead resize depending on the …
1
vote
9answers
420 views

Is there any other strongly-integrated presentation layer tool other than JSF/JSP for Java EE?

Hello, I'm teaching Java EE at the university, and this was a question a student asked. I said "no", but I wasn't really sure, so I thought I might ask you mighty developers. :) Basically, what I'd …
0
votes
1answer
214 views

Extension method output in Container.DataItem?

So I have an IList of business entities that I loop through in a ListView into an unordered list. I created an extension method on this Entity in my presentation layer. In code behind, I can …