473,767 Members | 1,578 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 4857
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.co m> wrote in message
news:KNIAc.5188 1$Hg2.17219@att bi_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.co m> wrote in message
news:KNIAc.5188 1$Hg2.17219@att bi_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.co m> wrote in message
news:KNIAc.5188 1$Hg2.17219@att bi_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******@hotma il.com> ¦b¶l¥ó
news:u1******** *****@TK2MSFTNG P11.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.co m> wrote in message
news:KNIAc.5188 1$Hg2.17219@att bi_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.ne t> wrote in message
news:u4******** ******@TK2MSFTN GP12.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.co m> wrote in message
news:KNIAc.5188 1$Hg2.17219@att bi_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.co m> wrote in message
news:KNIAc.5188 1$Hg2.17219@att bi_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
485
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 in the file. We've been trying to use the RichTextBox control to load a file, and get the offset when the user selects some text in the file. It's been working ok with regular text files, but we can't use the RichTextBox control to handle
21
2036
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 sure how to call my native C++ functions from my C++ DLLs. The confusion is this: I currently have Visual Studio 2003 it is not clear whether I should use managed extensions or C++/Interop?
4
5105
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 to play together nicely. And with html tables they do. So I thought I'd try some layers instead of tables. I created some layers in Dreamweaver then in VS put in some ASP.NET hyperlink, but then Dreamweaver wouln't let me edit the layer...
3
1417
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, and HTML template feature. well, as you know, developing web application is not just about inserting/updating/deleting and displaying data in plain-page design. so, here are my questions: - how to workaround this limitation in VS2003 - how to...
16
2603
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 gradual upgrade of my web programming skills from Classic ASP / VBS to ASP.NET / VB.NET. While the study of the language differences and all the new features in .NET has so far not been a traumatic experience, I am a bit shell-schocked after
1
1605
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 update dataset in designer with new values without recreating it?
0
3351
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 Microsoft Visual Studio 2005 Software Development Kit. By providing a full help authoring environment within the Visual Studio 2005 SDK, Innovasys is providing developers building components and products that integrate with Visual Studio 2005 a...
0
1133
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 is probably going to cause me problems down the line, sods law. The pages have been created in the latest version of dreamweaver mx and i have copied the html over into my aspx pages. Its quite annoying as i have to copy the html into notepad...
3
14967
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 not appear where it actually shows up when you run it the code. Is DIV the best way to go? How else can I do this? ContentPlaceHolder
0
9575
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10015
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 captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9960
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9842
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 choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8840
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 launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7384
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 instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6656
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 into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5280
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5425
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

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.