HTML values missing

  • Thread starter Thread starter Mike
  • Start date Start date
M

Mike

I'm creating a new asp.net (c#) web app and on my HTML page some values are
missing>

such as:
when i do:
<td >

when i hit spacebar I dont' see, width, bgcolor, border, etc in the drop
down. I only see around 10 or so values in the drop down. What's missing in
my install? I can still type them but I get

"width is outdated new construct is recommended."

what's the new construct?
 
Mike said:
I'm creating a new asp.net (c#) web app and on my HTML page some values are
missing>

such as:
when i do:
<td >

when i hit spacebar I dont' see, width, bgcolor, border, etc in the drop
down. I only see around 10 or so values in the drop down. What's missing in
my install? I can still type them but I get

"width is outdated new construct is recommended."

what's the new construct?

Open the document properties window, change target schema to:

Internet Explorer 5.0 (I'm using VS 2003 perhaps VS 2005 has better)
 
Mike,

nothing is missing in your installation. but with the latest HTML
standards, it is recommended that these features be handled using
StyleSheets(.css).

http://www.w3schools.com/ is a good source for quick,short,easy and
simple tutorials on HTML and other topics.

good luck.

HTH,
aru
 
You have to change the validation schema. The newer validation schemas want
you to use CSS. By default, I believe, the validation schema is set to XHTML
1.0. This schema uses css for most properties. You'll need to change it to
HTML 4.0 to get most of these back. Keep in mind, in some cases certain
properties aren't available in HTML 4 either as they deprecated earlier.
 
Back
Top