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" />
You should add a reference to Infragistics.Web in your project.
I am having a serious problem that is very similar! I need a fix ASAP! I am getting sick & tired of posting & waiting.
I am getting the warnings that
Could not find schema information for the element 'infragistics.web'
Could not find schema information for the attribute 'styleSetName'
Could not find schema information for the attribute 'styleSetPath'
I am using VS2008 (with SP1). The project is set to target .NET 3.5 Framework. And I have included infragistics35.web.v10.2 as a reference.
The line in the web.config file is below:
<
section name="infragistics.web" type="System.Configuration.SingleTagSectionHandler,System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
I need help.
I resolved this by rebuilding the web.config file from scratch.
Thank you.