In my .Net 3.5 web application, the compiler gives there messages:
1. Could not find schema information for the element 'infragistics.web'
2. Could not find schema information for the attribute 'styleSetName'
3. Could not find schema information for the attribute 'styleSetPath'.
A section of my web.config file is below.
How do I elimnate these messages. When trying to publish the app, they prevent success.
<section name="infragistics.web" type="System.Configuration.SingleTagSectionHandler,System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
<section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
</sectionGroup>
</configSections>
<infragistics.web styleSetName="Default" styleSetPath="~/ig_res" />
I've never run into that problem before. Is this a default web.config or did you build it from scratch? You may be able to get rid of the problem by changing the "Type" attribute on the infragistics.web section definition to match the 3.5 assebmly info (like all of the entries below the tag)
-Tony
It's the web.config built as I added the controls to a web page. I'll try your suggestion and see what happens. Thanks.