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 resolved this by rebuilding the web.config file from scratch.
Thank you.
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.
You should add a reference to Infragistics.Web in your project.
I am having the same problem. I get the following message when I compile.
Could not find schema information for the element 'infragistics.web'. web.config 11 4
-----
I have the project compiling correctly under an older version of Infragistics on another computer. I installed NetAdvantage ASP.NET 2008 Vol 2 on this computer and then downloaded the project from SourceSafe.
I upgraded the project using the 'Project Upgrade Utility' and now have this error.
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.