Getting the web controls to work in VS2005

Bill Humphrey

Active member
Joined
Apr 10, 2008
Messages
35
Programming Experience
Beginner
I have used this how to, to get the web controls working in VS2005:

Getting the IE Webcontrols work in ASP.NET 2.0 while using Visual Studio 2005



Here is my web.config:



HTML:
<configSections> 
 

<section name="MicrosoftWebControls" type="System.Configuration.NameValueSectionHandler,System,Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> 
 

</configSections> 
<MicrosoftWebControls>

<add key="CommonFiles" value="/MyTestApplication/webctrl_client/1_0/"/> 
</MicrosoftWebControls> .....................



///// I have put the web controls folder in the main folder of the project on my PC



///// The tab strip does not work in my project



I'm getting some errors like:

Could not find schema information for the element MicrosoftWebControls


Could not find schema information for the element add

Can anbody help??
 
Back
Top