Problems with Attributes
-
I have some trouble with certain attributes associated with ASP elements. Here are some example errors found in my VS.NET Task List: 1- The values permitted for this attribute do not include 'circle'. 2- Could not find any attribute 'onmouseover' of element 'Button'. 3- Could not find any attribute 'onmouseover' of element 'LinkButton'. ----------------------- #1 - This occurs when I try to set the TYPE attribute of a Unordered list item. Here is my code:
- text
----------------------- For #2, and #3, whenever I try to set the onMouseOver function (java) it flags as an error. ----------------------- Also, not relating to the above errors, I also get errors when trying to set the Class attribute for any ASP elements. Although, everything seems to be working, I would like to know why these are flagged as errors so that I may fix them. Thanks in advance, Jon G www.Gizmocoder.com
-
I have some trouble with certain attributes associated with ASP elements. Here are some example errors found in my VS.NET Task List: 1- The values permitted for this attribute do not include 'circle'. 2- Could not find any attribute 'onmouseover' of element 'Button'. 3- Could not find any attribute 'onmouseover' of element 'LinkButton'. ----------------------- #1 - This occurs when I try to set the TYPE attribute of a Unordered list item. Here is my code:
- text
----------------------- For #2, and #3, whenever I try to set the onMouseOver function (java) it flags as an error. ----------------------- Also, not relating to the above errors, I also get errors when trying to set the Class attribute for any ASP elements. Although, everything seems to be working, I would like to know why these are flagged as errors so that I may fix them. Thanks in advance, Jon G www.Gizmocoder.com
Jon G wrote: Also, not relating to the above errors, I also get errors when trying to set the Class attribute for any ASP elements. Although, everything seems to be working, I would like to know why these are flagged as errors so that I may fix them. Use CssClass instead of just class for asp elements. I'm not sure about the others.