473,569 Members | 3,035 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

ASP.NET development process

It is well advertised .NET allows separate developing of web pages by a web
designer and a web programmer. Where could I find recommendations from
Microsoft about the corresponding development process or tools that really
enable such parallel development? I would also like to read some real world
experiences.

We have particularly the following problems:

1. Our web designer can't use Visual Studio, so a) all HTML code must be
copied by a web programmer manually and b) her HTML pages aren't under
source control.

2. Our web designer knows nothing about modularity, so every HTML page she
creates shares some HTML code, that must be refactored by the web programmer
using user web controls. Even if the web designer knows about and values
modularity, how can she create and test modular HTML pages?

3. Some HTML controls are normally replaced by a web programmer with ASP
controls. That is responsibility of the web programmer, isn't it? But assume
the web designer has created a new, slightly different version of the page.
The web programmer must a) read the complete HTML code of the new page, b)
match it to the existing .aspx and c) add or remove correspoding tags. It is
very time consuming, error prone and unpleasing manual task.
Should our web designer create .aspx pages directly? Or should our designer
and programmer pair? And what should we do if web pages are designed by a
separate company?

Nov 18 '05 #1
4 1193
Real world :

I am working as a allround Visual studio programmer ( VS6 / VS.NET 2003 )
for some years now

my experience is that what is graphicly correct ( designer = in most of the
times a graphics artist ) is not always programaticly correct

i am a certified programmer ( MCP multiple times ) and my goal is to work
by MSF rules ( Graphic artists do not know these rules )

So i am happy that in my current job position i am together in one office
with a designer , he creates the plain HTML pages ( ASP.NET 2003 )
while i can focus on writing the code behind pages and the databases
however i do modify the HTML side i write custom scripts in it , and i
optimize the HTML
remove repetitive code and build it in databinded repeaters , i make the
templates etc etc etc etc

In my eyes that artist should make the initial graphical view the rest is
for the coder ( development team ) however close comunication with the
designer can solve a lot of frustration from both sides
as he can see my code modifications it is more likely that he wil adopt it
, in a next project . no i am not afraid that he can do my job in the future
:-) ,,, when it is not standard out of the book they stil need people who
can think recursive , and in program flow ( like we real developers can )
wich requires a good programming education and / or experience

"Maxim Fridental" <m.*********@fi remail.de> wrote in message
news:2i******** ****@uni-berlin.de...
It is well advertised .NET allows separate developing of web pages by a web designer and a web programmer. Where could I find recommendations from
Microsoft about the corresponding development process or tools that really
enable such parallel development? I would also like to read some real world experiences.

We have particularly the following problems:

1. Our web designer can't use Visual Studio, so a) all HTML code must be
copied by a web programmer manually and b) her HTML pages aren't under
source control.

2. Our web designer knows nothing about modularity, so every HTML page she
creates shares some HTML code, that must be refactored by the web programmer using user web controls. Even if the web designer knows about and values
modularity, how can she create and test modular HTML pages?

3. Some HTML controls are normally replaced by a web programmer with ASP
controls. That is responsibility of the web programmer, isn't it? But assume the web designer has created a new, slightly different version of the page. The web programmer must a) read the complete HTML code of the new page, b) match it to the existing .aspx and c) add or remove correspoding tags. It is very time consuming, error prone and unpleasing manual task.
Should our web designer create .aspx pages directly? Or should our designer and programmer pair? And what should we do if web pages are designed by a
separate company?

Nov 18 '05 #2
To answer the question...

It is a good idea to visit a Dreamweaver newsgroup [1] as there are
quite a few posts in that newsgroup regarding the use of Dreamweaver
with Visual Studio.NET. There has been scant discussion regarding this
issue by those using FrontPage but a post to that newsgroup [2]
should be made regardless as you might get lucky.
-
<%= Clinton Gallagher
A/E/C Consulting, Web Design, e-Commerce Software Development
Wauwatosa, Milwaukee County, Wisconsin USA
NET csgallagher@ REMOVETHISTEXT metromilwaukee. com
URL http://www.metromilwaukee.com/clintongallagher/

[1] news://macromedia.dreamweaver.appdev
[2] news://microsoft.public.frontpage.programming

"M. Posseth" <mi*****@nohaus ystems.nl> wrote in message
news:c9******** **@reader08.wxs .nl...
Real world :

I am working as a allround Visual studio programmer ( VS6 / VS.NET 2003 ) for some years now

my experience is that what is graphicly correct ( designer = in most of the times a graphics artist ) is not always programaticly correct

i am a certified programmer ( MCP multiple times ) and my goal is to work by MSF rules ( Graphic artists do not know these rules )

So i am happy that in my current job position i am together in one office with a designer , he creates the plain HTML pages ( ASP.NET 2003 )
while i can focus on writing the code behind pages and the databases
however i do modify the HTML side i write custom scripts in it , and i
optimize the HTML
remove repetitive code and build it in databinded repeaters , i make the templates etc etc etc etc

In my eyes that artist should make the initial graphical view the rest is for the coder ( development team ) however close comunication with the designer can solve a lot of frustration from both sides
as he can see my code modifications it is more likely that he wil adopt it , in a next project . no i am not afraid that he can do my job in the future :-) ,,, when it is not standard out of the book they stil need people who can think recursive , and in program flow ( like we real developers can ) wich requires a good programming education and / or experience

"Maxim Fridental" <m.*********@fi remail.de> wrote in message
news:2i******** ****@uni-berlin.de...
It is well advertised .NET allows separate developing of web pages by a
web
designer and a web programmer. Where could I find recommendations
from Microsoft about the corresponding development process or tools that really enable such parallel development? I would also like to read some real world
experiences.

We have particularly the following problems:

1. Our web designer can't use Visual Studio, so a) all HTML code
must be copied by a web programmer manually and b) her HTML pages aren't under source control.

2. Our web designer knows nothing about modularity, so every HTML page she creates shares some HTML code, that must be refactored by the web

programmer
using user web controls. Even if the web designer knows about and values modularity, how can she create and test modular HTML pages?

3. Some HTML controls are normally replaced by a web programmer with ASP controls. That is responsibility of the web programmer, isn't it? But assume
the web designer has created a new, slightly different version of
the page.
The web programmer must a) read the complete HTML code of the new
page, b)
match it to the existing .aspx and c) add or remove correspoding
tags. It is
very time consuming, error prone and unpleasing manual task.
Should our web designer create .aspx pages directly? Or should our

designer
and programmer pair? And what should we do if web pages are designed

by a separate company?


Nov 18 '05 #3
> So i am happy that in my current job position i am together in one office
with a designer , he creates the plain HTML pages ( ASP.NET 2003 )
while i can focus on writing the code behind pages and the databases
however i do modify the HTML side i write custom scripts in it , and i
optimize the HTML
remove repetitive code and build it in databinded repeaters , i make the
templates etc etc etc etc


Do you really say you are happy to refactor repetitive HTML code manually
again and again every day!? You must be a valuable employee for your
company. I can't do it nor I can find anyone who would readily do it...
Nov 18 '05 #4
euhhh yes i am happy with it :-)

maybe it is because i write pretty complex websites ?? ( i can`t believe a
designer can make the correct mods to let these websites run the most
efficient )

that this aproach works for me ??

see for yourself

my current project ( now 70 % finished )

http://hbase.nohausystems.nl

login with username mptestuser password : test191173

see for yourself

this website was give to me in plain html with some dummy records in it (
the designer did write this with VS.net 2003 in the aspx files )
if he is finished with a section i step in and modify and optimize all code
( bind the data to it ,write the sql server stored procedures and command
objects , and write custom script etc etc etc )

p.s.

this website is platform independent runs on all mozilla compatible
browsers (+ _ 10% of the future users of this site wil use Linux with
mozilla or conqueror )
You must be a valuable employee for your
company. I can't do it nor I can find anyone who would readily do it...


happy to hear that someone thinks so :-( in the meanwhile i live in a getto
, and earn peanuts :-(

but as i always say my work is my hobby ,,, ( and it really is :-) i just
love to code :-)



"Maxim Fridental" <m.*********@fi remail.de> wrote in message
news:%2******** ********@TK2MSF TNGP11.phx.gbl. ..
So i am happy that in my current job position i am together in one office with a designer , he creates the plain HTML pages ( ASP.NET 2003 )
while i can focus on writing the code behind pages and the databases
however i do modify the HTML side i write custom scripts in it , and i
optimize the HTML
remove repetitive code and build it in databinded repeaters , i make the
templates etc etc etc etc


Do you really say you are happy to refactor repetitive HTML code manually
again and again every day!? You must be a valuable employee for your
company. I can't do it nor I can find anyone who would readily do it...

Nov 18 '05 #5

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

Similar topics

0
1004
by: Mike Jansen | last post by:
We're doing .NET development for PocketPC, BizTalk, and miscellaneous other things. One of the difficulties has been keeping references to assemblies intact in a project when the referenced assemblies are under development as well. For example, I am developing AppA that uses ComponentB and ComponentC, which are both being developed by two...
0
1534
by: Steven Kelly | last post by:
For those going to XP 2005 (Sheffield, UK, June 18-23) and interested in modeling, the following workshop may be of interest: Agile Development with Domain Specific Languages Scaling up Agile - is Domain-Specific Modeling the key? Alan Cameron Wills and Steven Kelly http://www.dsmforum.org/events/ADDSL05/
22
1790
by: Ally | last post by:
Could someone give me an example of a modern development methodology? Just to see if I'm thinking along the right lines... P.S. Sorry for the cross posting but I couldn't find a newsgroup for systems analysis.
7
326
by: Shaji | last post by:
Dear All, I am using VS.Net (and most of you, of course) for a quite long period for web development for medium to large development tasks. My humble opinion is vs.net is eating up a lot of developer time, as far as the web development is concerned.
8
9995
by: Rod | last post by:
I have been working with ASP.NET 1.1 for quite a while now. For some reason, opening some ASP.NET applications we wrote is producing the following error message: "The Web server reported the following error when attempting to create or open the Web project located at the following URL: 'http://localhost/WebApplication1'. 'HTTP/1.1 500...
5
2050
by: Shawn Berg | last post by:
I have just finished reading the "Team Development with Visual Studio .NET and Visual SourceSafe" patterns & practices white paper. I just wanted to get a good feel from others if what they suggest here is really the best implementation for team development. My company only has a handful of developers (2 currently, as many as 5 possibly in the...
4
2936
by: Richard Levasseur | last post by:
(Forewarning, most of these problems and solutions come from being the only developer in a 1 server department with no budget, few resources, unresponsive IT, and non-technical managers, so thats where I'm coming from.) (Additionally, this may or may not fit in this group, but I know there's bright people here, and it is largely PHP...
0
1662
by: jconxus | last post by:
Mylinia.com Live purposefully! Who: Mylinia.com is a personal development company located in the heart of the Silicon Valley, started in 2006 by 3 Stanford business school students who are dedicated to helping people all over the world reach their full potential. We envision a better world where people have the freedom to live...
2
2423
by: alacmathew | last post by:
Hi everybody I am a project manager with a mid level software development company Some days back I came across a posting in a forum where a person otherwise a competent finance professional wanted to know about basics of software development process This got me thinking In todays world of multitasking it is not rare to see people from different...
39
4983
by: howa | last post by:
Hello, What are the default value for initialized variable? e.g. int d; // debug give me -858993460 char c; // debug give me -52
0
7619
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7930
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
8138
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
0
7983
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
6290
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5514
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
5228
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3651
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
950
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

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.