473,385 Members | 2,013 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Presentation Layer and application separation

MG
A Newbie question perhaps, but here goes:

Is it possible to seaprate the presentatieon layer, i.e., the html, from the
application itself.

For example, our developer has told us that we cannot do immeidate changes
to user interface becasue the presentaion layer is bound up with the rest of
the dll and to eextract that out of the app, would take ages. and so any
changes would be incorproated into the next buiild compilation.

I would like our designers and html template builders to be anble to work on
the live site with out interfering wiht the application and without having
to wait for a weekly Build cycle.

Any thoughts?

Thanks

--
--------------------
Michael Guthrie
ArtFusion, Ltd.
www.artfusion.com
Jul 21 '05 #1
4 1939
MG,

Can you make it for us a little bit more clear, are you talking about a web
solution using ASPX or a window solution (something as Words)

Cor
Jul 21 '05 #2
It is possible to seperate the presentation and business layer, for asp.net
apps webservices can help you tremendously as can a good design based on
code-behind. Its worth your while reading up on both of these approaches.

You should sack the first designer who works on your live site while its
running live applications. You should only ever deploy tested code, even
html to a live site, never develop on it unless you have no other choice.
Your designer is right to suggest you wait for a build release, however the
complexity and current design of the application may make releases a slow
process so you should evaluate where the delays in testing and release may
come from and work out a plan of action to improve this.

--
Regards

John Timney
ASP.NET MVP
Microsoft Regional Director

"MG" <li***@nospamtravelplaces.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
A Newbie question perhaps, but here goes:

Is it possible to seaprate the presentatieon layer, i.e., the html, from the application itself.

For example, our developer has told us that we cannot do immeidate changes
to user interface becasue the presentaion layer is bound up with the rest of the dll and to eextract that out of the app, would take ages. and so any
changes would be incorproated into the next buiild compilation.

I would like our designers and html template builders to be anble to work on the live site with out interfering wiht the application and without having
to wait for a weekly Build cycle.

Any thoughts?

Thanks

--
--------------------
Michael Guthrie
ArtFusion, Ltd.
www.artfusion.com

Jul 21 '05 #3
MG
Thanks John, for your thoughtful reply.

You are absolutely right about not working directly to the live site, and I
should rephrase that to say, the staging site or development site. We do
have this paradigm in place and nothing goes live with out being tested
thouroghly

I guess what I am really asking is I would like to be able to have HTML
folks be able to work on layout and make changes to that sort of thing
without having to recompile the .Net application. So that our releases are
not so slow. A good example of this is I would like to have responded to the
Tsunami disaster by posting an aid links page and PSA without having to
rebuild the whole application to do it, and because our development is all
rolled up into one big ball, it makes it impossible to do this.

Am I right to assume that I shoudl be able to have HTML layout pages
separate from the application.
The graphics already are, so thats not an issue, and can chage those at
will, but layout is not separate and is defintiely causing much
consternation.

Can you or anyone reading this point me to some diagrams or basic resources
that can show or demonstrate an ASP.NET application with html layout
separate form the dll that has been compiled.

Pardon me if my terminology is not quite right, but I am feeling my way in
this space.

By the way, the app/web site in question is this:
http://www.friendsabroad.com
Much appreciated,

--
--------------------
Michael Guthrie
ArtFusion, Ltd.
www.artfusion.com

"John Timney (ASP.NET MVP)" <ti*****@despammed.com> wrote in message
news:OJ****************@TK2MSFTNGP11.phx.gbl...
It is possible to seperate the presentation and business layer, for
asp.net
apps webservices can help you tremendously as can a good design based on
code-behind. Its worth your while reading up on both of these approaches.

You should sack the first designer who works on your live site while its
running live applications. You should only ever deploy tested code, even
html to a live site, never develop on it unless you have no other choice.
Your designer is right to suggest you wait for a build release, however
the
complexity and current design of the application may make releases a slow
process so you should evaluate where the delays in testing and release may
come from and work out a plan of action to improve this.

--
Regards

John Timney
ASP.NET MVP
Microsoft Regional Director

"MG" <li***@nospamtravelplaces.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
A Newbie question perhaps, but here goes:

Is it possible to seaprate the presentatieon layer, i.e., the html, from

the
application itself.

For example, our developer has told us that we cannot do immeidate
changes
to user interface becasue the presentaion layer is bound up with the rest

of
the dll and to eextract that out of the app, would take ages. and so any
changes would be incorproated into the next buiild compilation.

I would like our designers and html template builders to be anble to work

on
the live site with out interfering wiht the application and without
having
to wait for a weekly Build cycle.

Any thoughts?

Thanks

--
--------------------
Michael Guthrie
ArtFusion, Ltd.
www.artfusion.com


Jul 21 '05 #4
MG,

Technical there are in my opinion not much problems to achieve at least a
part of what you want.

Seeing that sample page of you, I see a page which has mixed up
Design
JavaScript with even postbacks in it
Code Behind (what is translated on the page as viewstate).

When you look at it, a page that is real a one mans Job in the way it is
made.
(And it looks to be done by somebody who is technical well).

So in my opinion when you want to do what you want you have to divide the
design part and the code part.

The viewstate is no problem, because that is added in the process where the
page is created by the webserver and is not in the designed ASPX directly
beside the ASP controls (it goes too far to tell now what that implements
and can give you than wrong ideas).

The javascript will however break you up in my opinon.
Getting that to the code behind side however will in my opinion help you to
achieve your goal

However just my thought,

Cor
Jul 21 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
by: Michael Rodriguez | last post by:
I have a windows form that makes a call to my BLL to get some data. The windows form has a progress bar component that I would like updated as the data retrieval takes place. However, strictly...
2
by: headware | last post by:
I'm relatively new to ASP.NET and ADO.NET, but I have a basic design question regarding the use of web services and APS.NET applications. Right now we have an application that uses web services to...
4
by: MG | last post by:
A Newbie question perhaps, but here goes: Is it possible to seaprate the presentatieon layer, i.e., the html, from the application itself. For example, our developer has told us that we cannot...
5
by: Learner | last post by:
Hi there, I am just trying to set up 3 tier architecture. When i add my Datalayer project to the Business layer project the methods are exposed to in my business class. But in the similar way when...
1
by: rbg | last post by:
Hi, I am trying to understand the layering concept with the ASP.NET 2.0 apps. I have a ASP.NET 2.0 Web app which has 3 layers Presentation layer which contains UI elements and Input...
2
by: Ily | last post by:
Hi all I am using Visual studio 2005. Im my project I have a presentation layer, a business layer and a data access layer. From my business layer i have a reference to my data layer. I also...
6
by: Dhananjay | last post by:
hello everyone i have got a problem i want to design business layer, data access layer , presentation layer for asp.net using C#.net , can anyone help me to solve this problem. i want some...
1
by: Clark Simpson | last post by:
Hi, Apologies if this is such a simple query but if I have an ASP/.NET Application which I normally access via www.foo.com/myapp on Machine A can I access this application layer machine via a...
0
by: johnlim20088 | last post by:
Can someone help me on this? I need a sample console application built in C# net with new practice -> separate in three layer architecture 1) Presentation layer 2) Business logic layer 3)...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.