473,394 Members | 1,951 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,394 software developers and data experts.

Visual Studio.Net Wysiwyg

I know this topic has been beat to death. However, I was sitting here
trying to figure out what Microsoft Does when they develop an ASP.net
for WYSIWYG functionality. Visual Studio's sucks to be honest. And I
don't believe Microsoft has purchased Dreamweaver to do their designs.

Are any of you using Visual Studio exclusively to develop your ASP.net
apps? If so do you have any web sites that can demonstrate the result. I
am really curious how some of these apps/sites look.

Thanks
Marty U.
Nov 18 '05 #1
6 4841
I am using VS.NET 2003 to create ASP.Net web applications.
Do not mistake VS.NET to be a WYSIWYG with some areas of web development, it
won't be.
It is not designed to create basic HTML based applications, although you can
with some minimal formatting features and apply CSS.
It is designed to create aspx pages. Web Server controls have their
properties set through a properties window. HTML controls will most likely
use CSS for visual effects.

If you want WYSIWYG, use Dreamweaver MX. I understand that it supports .NET.
That is the impression I got from the www.asp.net website.

I don't have any sites to show you as mine is still local to me and still in
development.

"Marty U." <no**@none.com> wrote in message
news:KNIAc.51881$Hg2.17219@attbi_s04...
I know this topic has been beat to death. However, I was sitting here
trying to figure out what Microsoft Does when they develop an ASP.net
for WYSIWYG functionality. Visual Studio's sucks to be honest. And I
don't believe Microsoft has purchased Dreamweaver to do their designs.

Are any of you using Visual Studio exclusively to develop your ASP.net
apps? If so do you have any web sites that can demonstrate the result. I
am really curious how some of these apps/sites look.

Thanks
Marty U.

Nov 18 '05 #2
Marty,

I am currently using VS to develop the front-end of my app...you're
right...it sucks. The main problem is auto-formatting (which I suppose
drives this whole WYSIWYG functionality). I swear I will trash my computer
if I have to manually delete another "Z-INDEX" attribute. In some cases,
(especially when using the Internet Explorer TreeView control -no longer
supported by Microsoft btw :-), VS.NET likes to randomly add 3-4 nested
Tables into the html (thereby screwing up the entire look and feel of the
page). In another case I added a dhtml/css-driven menu to a page, and VS
completly "jacked it all up" (as a co-worker put it).

Once you start manually adding tidbits of DHTML/Custom controls, etc. to the
html VS becomes very finicky (leaving you two choices...VS's way, or the
highway). It's embarrasing to have to mention at our weekly meeting that
anytime you modify the TreeView make sure to manually delete the 4 tables
that magically appear and to also change the TreeView width attribute back
to 689px from 644px...the only positive out of it is the job security you
get, being the only one who can work on it ;-)

anyway...good luck if you partake.


"Marty U." <no**@none.com> wrote in message
news:KNIAc.51881$Hg2.17219@attbi_s04...
I know this topic has been beat to death. However, I was sitting here
trying to figure out what Microsoft Does when they develop an ASP.net
for WYSIWYG functionality. Visual Studio's sucks to be honest. And I
don't believe Microsoft has purchased Dreamweaver to do their designs.

Are any of you using Visual Studio exclusively to develop your ASP.net
apps? If so do you have any web sites that can demonstrate the result. I
am really curious how some of these apps/sites look.

Thanks
Marty U.

Nov 18 '05 #3
Yes you are right.... vs.net sucks badly as a wysiwyg .... very badly....
maybe that is because it wasnt built for design... however you still think
they could have done a better job than they have.

Anyway... i use dreamweaver or hand code for all our designs. then bring
into vs.net once al the html is built.

process goes
1) designer designs the UI
2) Build all HTML pages in dreamweaver and produce html prototype of site
3) bring this into vs.net and finish it off

also becareful when viewing things in the designer view in vs after
dreamweaver has finished... it does a good job or removing tags that it
doesnt know...
"Marty U." <no**@none.com> wrote in message
news:KNIAc.51881$Hg2.17219@attbi_s04...
I know this topic has been beat to death. However, I was sitting here
trying to figure out what Microsoft Does when they develop an ASP.net
for WYSIWYG functionality. Visual Studio's sucks to be honest. And I
don't believe Microsoft has purchased Dreamweaver to do their designs.

Are any of you using Visual Studio exclusively to develop your ASP.net
apps? If so do you have any web sites that can demonstrate the result. I
am really curious how some of these apps/sites look.

Thanks
Marty U.

Nov 18 '05 #4
Hello,

I agree that one should do their design in whatever webpage degining
software then bring them in VS.NET.
However, you have to agree that if you use VS.NET's IDE to write tags in to
defined schema only, you should
at least feel convienence in writing pages.

Not only the Intelisense autocomplete feature I'm talking about, if you
write tags without closing it, the IDE
will tell you by showing </whatever> when you type "<". Once you fill back
all the missing end tags, you can
switch to designer view than back again. You'll see the excess end tags
being stacked in single row so you can
remove them easily.

Finally, don't know I'm correct or not, even if I removed the schema
meta tag, it doesn't remove any of the tag
it complains doesn't exist. Maybe I should try to see on some tags it
doesn't know...

"Darren Clark" <dc******@hotmail.com> ¦b¶l¥ó
news:u1*************@TK2MSFTNGP11.phx.gbl ¤¤¼¶¼g...
Yes you are right.... vs.net sucks badly as a wysiwyg .... very badly....
maybe that is because it wasnt built for design... however you still think
they could have done a better job than they have.

Anyway... i use dreamweaver or hand code for all our designs. then bring
into vs.net once al the html is built.

process goes
1) designer designs the UI
2) Build all HTML pages in dreamweaver and produce html prototype of site
3) bring this into vs.net and finish it off

also becareful when viewing things in the designer view in vs after
dreamweaver has finished... it does a good job or removing tags that it
doesnt know...
"Marty U." <no**@none.com> wrote in message
news:KNIAc.51881$Hg2.17219@attbi_s04...
I know this topic has been beat to death. However, I was sitting here
trying to figure out what Microsoft Does when they develop an ASP.net
for WYSIWYG functionality. Visual Studio's sucks to be honest. And I
don't believe Microsoft has purchased Dreamweaver to do their designs.

Are any of you using Visual Studio exclusively to develop your ASP.net
apps? If so do you have any web sites that can demonstrate the result. I
am really curious how some of these apps/sites look.

Thanks
Marty U.


Nov 18 '05 #5
You can get rid of tables if you set validation target to IE5. If you have
it set to IE3, VS tries to keep positional using tables. Otherwise it will
use styles.

Autoformatting is not, in fact, formatting. Have a look here
http://weblogs.asp.net/mikhailarkhip...16/132886.aspx

Thanks
Mikhail Arkhipov (MSFT)
--This post is provided "AS IS" with no warranties, and confer no rights --

"Bilbo" <Bi***@cox.net> wrote in message
news:u4**************@TK2MSFTNGP12.phx.gbl...
Marty,

I am currently using VS to develop the front-end of my app...you're
right...it sucks. The main problem is auto-formatting (which I suppose
drives this whole WYSIWYG functionality). I swear I will trash my computer
if I have to manually delete another "Z-INDEX" attribute. In some cases,
(especially when using the Internet Explorer TreeView control -no longer
supported by Microsoft btw :-), VS.NET likes to randomly add 3-4 nested
Tables into the html (thereby screwing up the entire look and feel of the
page). In another case I added a dhtml/css-driven menu to a page, and VS
completly "jacked it all up" (as a co-worker put it).

Once you start manually adding tidbits of DHTML/Custom controls, etc. to the html VS becomes very finicky (leaving you two choices...VS's way, or the
highway). It's embarrasing to have to mention at our weekly meeting that
anytime you modify the TreeView make sure to manually delete the 4 tables
that magically appear and to also change the TreeView width attribute back
to 689px from 644px...the only positive out of it is the job security you
get, being the only one who can work on it ;-)

anyway...good luck if you partake.


"Marty U." <no**@none.com> wrote in message
news:KNIAc.51881$Hg2.17219@attbi_s04...
I know this topic has been beat to death. However, I was sitting here
trying to figure out what Microsoft Does when they develop an ASP.net
for WYSIWYG functionality. Visual Studio's sucks to be honest. And I
don't believe Microsoft has purchased Dreamweaver to do their designs.

Are any of you using Visual Studio exclusively to develop your ASP.net
apps? If so do you have any web sites that can demonstrate the result. I
am really curious how some of these apps/sites look.

Thanks
Marty U.


Nov 18 '05 #6
Marty,

VS can suck quite badly unless you configure it how you want it. Check out
Tools->Options and set up the formatting options however you like.

One of the really annoying things about VS.NET is that by default it will
autoformat markup and place a linebreak and tabbing between <TD> and <IMG>
tags which, for whatever reason, will not render correctly in IE (you get a
noticable space before the image). I set up VS.NET to respect my formatting,
though, and haven't had an issue with it since.

I use VS.NET exclusively for designing all aspects of my Web apps. As an
example, check out one of our demo sites - http://timclay.webmakerx.net/.
(note: this is a demo site so one of the sales guys could change themes in
the middle of you looking at it - just don't be alarmed if the entire site
changes.)

HTH,
Robert Gaut
"Marty U." <no**@none.com> wrote in message
news:KNIAc.51881$Hg2.17219@attbi_s04...
I know this topic has been beat to death. However, I was sitting here
trying to figure out what Microsoft Does when they develop an ASP.net
for WYSIWYG functionality. Visual Studio's sucks to be honest. And I
don't believe Microsoft has purchased Dreamweaver to do their designs.

Are any of you using Visual Studio exclusively to develop your ASP.net
apps? If so do you have any web sites that can demonstrate the result. I
am really curious how some of these apps/sites look.

Thanks
Marty U.

Nov 18 '05 #7

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

Similar topics

5
by: Jay Kim | last post by:
Hi, We're implementing a Windows application using Visual Basic .NET. One of the key features we need to implement is that we should be able to get the accurate byte offset of user selected text...
21
by: Paul Tremblay | last post by:
Hi All, I am a veteran C/C++ programmer (Unix background) and I want to get to speed with Visual Studio .Net I have legacy C/C++ code that I want to use in my application. However, I'm not...
4
by: Bruce W...1 | last post by:
IE 6 supports the DOM for the most part. Am I missing something or is this absent from Visual Studio 2003? Does Web Matrix have it? You see, I'm trying to get Visual Studio and Dreamweaver MX...
3
by: Andy Lim | last post by:
I'm currently working on my second web application using VS 2003/VB.NET, after moved from Dreamweaver MX. one thing that i missed so much in VS2003 is DWMX's great visual, WYSIWYG layout design,...
16
by: TB | last post by:
Hi all: If you think that the following comments are absolute amateurish, then please bear with me, or simply skip this thread. A couple of months back I made the decision to initiate a...
1
by: GS | last post by:
Hello, I used Visual Data Designer to design dataset based on table from SQL database. I made a change to database (increased length of some columns) but my dataset is still the same. Any way to...
0
by: fiona | last post by:
Innovasys Ltd., a leader in help authoring and documentation tools, today announced the inclusion of a tailored version of the Innovasys HelpStudio help authoring product, HelpStudio Lite, in the...
0
by: steven scaife | last post by:
Hi i applied service pack1 to my installation but to no avail. Studio removes any style tags from my HTML when i save. I removed all the checkboxes from the html and xml formatting options which...
3
by: jobs | last post by:
Hello. I have a master page with ContentPlaceHolder under a html Div tag. That DIV tag has CSS that positions it. While in Visual Studio design view, that div tag and contentplace holder does...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
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
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
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

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.