VB.NET Enterprise Developer

  • Thread starter Thread starter John Burns
  • Start date Start date
J

John Burns

I am annoyed by VB.NET changing the TD align setting
from 'center' to 'middle' each time I flip between design
view and html view on my aspx pages.

META Key checkers don't like 'middle'. They
prefer 'center'.

Why does VB.NET change my html code when switching from
html to design and then back to html?

Grrr!
 
I agree, but since most browsers ignore what they don't understand and since
"Middle" is not a valid value for the Align attribute, the browser will use
the HTML default value for the Align attribute, which is "Center'.

I know this doesn't directly answer your VS question, but at least your code
will function correctly.
 
It will get better with Whidbey. The core engine is great in .NET, but the
peripheral pieces and GUI still need some work. I, personally, design in
either FrontPage or Dreamweaver (work or home) and only dink with CodeBehind
in .NET. At least most of the time. You need the newest versions of either
to really work well with the ASP.NET tags. FP2K3 has full Intellisense for
tags now, so it is much nicer than earlier versions.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

**********************************************************************
Think Outside the Box!
**********************************************************************
 
Back
Top