473,405 Members | 2,176 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,405 software developers and data experts.

What is the best approach to creating WebForms?

We have a developer who claims the Visual Studio designer is not
sophisticated enough to build enterprise grade web pages and thus hand codes
all of his HTML in such a way as to make the designer impossible to use.

Is this common?
Nov 18 '05 #1
7 1549
nope... he just doesnt know how to use it properly... there are minor things
but even then its hell lot better and faster to use Designer than hand
coding the html

--

Regards,

Hermit Dave
(http://hdave.blogspot.com)
"Jason" <nf*@nospam.com> wrote in message
news:e6**************@TK2MSFTNGP12.phx.gbl...
We have a developer who claims the Visual Studio designer is not
sophisticated enough to build enterprise grade web pages and thus hand
codes
all of his HTML in such a way as to make the designer impossible to use.

Is this common?

Nov 18 '05 #2
I would have to agree. Though I don't understand why once the HTML part of
the coding is done, why the designer is impossible to use afterwards.

Also, I think people use other products more geared toward web design to
design the visual parts of the page, and then move it into VS.NET to do all
the coding.

"Jason" <nf*@nospam.com> wrote in message
news:e6**************@TK2MSFTNGP12.phx.gbl...
We have a developer who claims the Visual Studio designer is not
sophisticated enough to build enterprise grade web pages and thus hand codes all of his HTML in such a way as to make the designer impossible to use.

Is this common?

Nov 18 '05 #3
Jason <nf*@nospam.com> typed:
We have a developer who claims the Visual Studio designer is not
sophisticated enough to build enterprise grade web pages and thus
hand codes all of his HTML in such a way as to make the designer
impossible to use.

Is this common?


I'm not sure to understand which is the problem. If I mean right, you could
use the code behind so you don't need to mix HTML tag with code. The best
way is to separate the presentation from the classe that help you to manage
the page. So you could let developer to manage code and designer to manage
the look and feel of your page.

--
Davide Vernole
MVP ASP/ASP.NET
Microsoft Certified Solution Developer
Nov 18 '05 #4
Hand-coding HTML, while a good skill, is not a practical one (how much are
you paying this guy per hour?). The Visual Studio.Net IDE does everything
well except HTML. Therefore, I use FrontPage to do the HTML, paste it into
the IDE, and go from there. I also know of a number of developers who
supplement VS.Net with Dreamweaver.

If you do your HTML right, it doesn't affect the Designer at all.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"Jason" <nf*@nospam.com> wrote in message
news:e6**************@TK2MSFTNGP12.phx.gbl...
We have a developer who claims the Visual Studio designer is not
sophisticated enough to build enterprise grade web pages and thus hand codes all of his HTML in such a way as to make the designer impossible to use.

Is this common?

Nov 18 '05 #5
It is due to the way he is creating the template.

"Marina" <so*****@nospam.com> wrote in message
news:OS**************@TK2MSFTNGP11.phx.gbl...
I would have to agree. Though I don't understand why once the HTML part of the coding is done, why the designer is impossible to use afterwards.

Also, I think people use other products more geared toward web design to
design the visual parts of the page, and then move it into VS.NET to do all the coding.

"Jason" <nf*@nospam.com> wrote in message
news:e6**************@TK2MSFTNGP12.phx.gbl...
We have a developer who claims the Visual Studio designer is not
sophisticated enough to build enterprise grade web pages and thus hand

codes
all of his HTML in such a way as to make the designer impossible to use.

Is this common?


Nov 18 '05 #6
I have only been doing WinForms so am not an expert on WebForms. I do like
using the WinForms designer for layout and setting basic properties and am
not anxious to lose this capability for WebForms.

Since we are rewriting a Java/BEA/Oracle Extranet to .NET and it will be
approximately an 18 month project I am toying with the idea of starting
development with the beta version of Visual Studio that has better support
for thimgs like Master Pages, etc.

"Kevin Spencer" <ks******@takempis.com> wrote in message
news:uW**************@TK2MSFTNGP09.phx.gbl...
Hand-coding HTML, while a good skill, is not a practical one (how much are
you paying this guy per hour?). The Visual Studio.Net IDE does everything
well except HTML. Therefore, I use FrontPage to do the HTML, paste it into
the IDE, and go from there. I also know of a number of developers who
supplement VS.Net with Dreamweaver.

If you do your HTML right, it doesn't affect the Designer at all.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"Jason" <nf*@nospam.com> wrote in message
news:e6**************@TK2MSFTNGP12.phx.gbl...
We have a developer who claims the Visual Studio designer is not
sophisticated enough to build enterprise grade web pages and thus hand

codes
all of his HTML in such a way as to make the designer impossible to use.

Is this common?


Nov 18 '05 #7
<<I do like using the WinForms designer for layout >>
At the risk of reading too much into this statement, I'll point out that
laying out controls is one thing and having them appear where you expect in
a rendered HTML page is a different thing. What you see is definitely not
what you get in the world of Web Forms (which is really just HTML and CSS at
the end of the day). On the Web, you have much less control over how pages
display given how different browsers interpret and render HTML, their
various compliance with HTML and CSS standards, etc. The VS.NET IDE (or any
tool, really) won't give you the same results you might be expecting based
on experience with WinForms (which do appear almost exactly at runtime as
they do at design time). A good topic to familiarize yourself with if your
new to Web page development is the various techniques for laying out a page;
each technique has very different advantages and disadvantages. To start off
with, an older yet well-documented method is to do layout with tables,
another is with CSS (CSS-P)...

Good Luck.

"Jason" <nf*@nospam.com> wrote in message
news:uf**************@TK2MSFTNGP09.phx.gbl...
I have only been doing WinForms so am not an expert on WebForms. I do like
using the WinForms designer for layout and setting basic properties and am
not anxious to lose this capability for WebForms.

Since we are rewriting a Java/BEA/Oracle Extranet to .NET and it will be
approximately an 18 month project I am toying with the idea of starting
development with the beta version of Visual Studio that has better support
for thimgs like Master Pages, etc.

"Kevin Spencer" <ks******@takempis.com> wrote in message
news:uW**************@TK2MSFTNGP09.phx.gbl...
Hand-coding HTML, while a good skill, is not a practical one (how much are you paying this guy per hour?). The Visual Studio.Net IDE does everything well except HTML. Therefore, I use FrontPage to do the HTML, paste it into the IDE, and go from there. I also know of a number of developers who
supplement VS.Net with Dreamweaver.

If you do your HTML right, it doesn't affect the Designer at all.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"Jason" <nf*@nospam.com> wrote in message
news:e6**************@TK2MSFTNGP12.phx.gbl...
We have a developer who claims the Visual Studio designer is not
sophisticated enough to build enterprise grade web pages and thus hand

codes
all of his HTML in such a way as to make the designer impossible to use.
Is this common?



Nov 18 '05 #8

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

Similar topics

2
by: Mike Hennessy | last post by:
I'm looking for people's opinions and feedback regarding the design of the application tier, and how to best logically separate out the Data Access from the Business Object's. Per the Microsoft...
5
by: Fred | last post by:
Not much expertise on XSLT and trying to understand it's uses when creating apps in VS.NET? If I wanted flexibility on the UI (View aspect of M.V.C.): - How does it compare with creating...
12
by: Steven T. Hatton | last post by:
This is something I've been looking at because it is central to a currently broken part of the KDevelop new application wizard. I'm not complaining about it being broken, It's a CVS images. ...
1
by: mrhicks | last post by:
Hello all, I am trying to keep my coding easy for everyone to use. I have some ARINC data that need to go out which 12 Bytes long. The first byte is the command word, the next 10 bytes represent...
4
by: Dave | last post by:
(My apologies for posting this on two forums. I have just found out the other one was the incorrect location) I am writing a VB.NET 2003 web application to operate on my company's intranet. It...
2
by: jdp | last post by:
I've created a custom login control with values that are not used in the Membership table. I created these other fields through the <profiletag in the web config. I'm able to get a new member...
4
by: Jeff | last post by:
Hey ASP.NET 2.0 I'm about to create a UserControl for my web project, but I'm wondering if I need to create 2 UserControls instead. Because these UserControls will be very similar, the only...
2
by: Paulo Roberto | last post by:
Hi, I have a VS2005 asp.net 2.0 C# application with a lot of screens just like customers, companys, manufacturers wich has always the same basics working like a gridview showing the records, and...
3
by: John Kotuby | last post by:
Hi all, I am converting an ASPX 3.5 page in VB and VS 2008 from the standard postback to callbacks using an UpdatePanel. I had originally been adding an onload attribute to the Body tag in the...
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: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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...
0
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,...

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.