MS VS does not recognize some html stuff.

  • Thread starter Thread starter Qwert
  • Start date Start date
Q

Qwert

Hello,

why is it that MS Visual Studio (Microsoft Development Environment 2002
version 7.0.) does not recognize some html tags like:

'onmousemove' in <img name="MyImage" src="test.bmp"
onmousemove="MyJavascriptFunction()" >

or:

'alt' in <AREA SHAPE=RECT COORDS="0,0,50,50" HREF="Index.html" >

or

'readOnly' in <input type=text name="MyText" readOnly="true">?

Thanks.
 
You can always add your own like this:

Image1.Attributes.Add("onmouseover", "alert('Hey');")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top