views:

91

answers:

2

Hi.... Im working with Visual studio 2003 and ultr grid... In my html code i can see tag error like "active schema does not support the element..." because of this i dont hav any problem to execute my web application.. but i just wanted to know why i am getting Tag error... is it because of third party tool ultrgrid?? Can anyone please help me on this??

+1  A: 

The visual studio designer has its own HTML schema validator. You may see HTML validation errors in design mode eventhough the website works fine.

It could be that Infragistics assemblies are loading from the GAC and not the "bin" directory of the website.

Make sure that your references to the Infragistics assemblies are set to "Copy Local". Please refer to this article for more information.

Jose Basilio
yes i set the Copy Local property to true...but still im getting the same error
sona
If the "Copy Local" property was not set previously, you could try rebuilding the solution. Otherwise, my only other suggestion is upgrading to VS2005 or 2008.
Jose Basilio
yea i tried to rebuild the the solution too...not working..hope it wont create any problem...Thank you Jose
sona
+1  A: 

The IDE validates your HTML to a schema - see here.
You could try to put valid HTML (if its not) or add a schema to use (details here).

Dror