How do you turn it OFF!

  • Thread starter Thread starter Mj
  • Start date Start date
M

Mj

Hello,

Okay I admit I'm new to Visual Studio. Here's my challenge. When I'm
in designer and try to resize a table by using the little handles on
the html code side it puts in a Style= tag. Anyway to turn it off so
it doesn't put the "style" tag in the html?

Thanks so much in advance.

mj
 
and what do you want it to use? Just the WIDTH tag?
Personally I avoid using the design view for anything other then dropping on
controls. Do the rest from the code-behind. The design view is not a true
wysiwig so what you see isn't necessarily what you get when you run it
anyway....
 
You'll go nuts if you try to develop a good page layout in VS.NET. A case in
point is the very issue you reported. The best way to keep your sanity is to
do your page layout in a separate tool designed for such purposes (such as
Dreamweaver), and use Visual Studio for any coding work. That's the
combination I use (and never attempt layout with VS.NET).

HTH

Mac
MCSD, MCDBA, MCSE, MCSA
 
You can try this,
Right click on your webform in vs.net, select property menu option and then
change your page layout depending upon your requirement.
 
Back
Top