NameSpace in Web.config

F

fabrice

Hello

With FrameWork .net 1.1 i'm trying to add Namespace references as following
:

.....

<namespaces>
<add namespace="System.Web" />
<add namespace="System.Web.UI" />
<add namespace="System.Web.UI.WebControls" />
<add namespace="System.Web.UI.HtmlControls" />
</namespaces>

</system.web>
</configuration>

but i get an error. The configuration (section) is not recognized..


Ligne 121 : </compilation>
Ligne 122 :
Ligne 123 : <namespaces>
Ligne 124 : <add namespace="System.Web" />
Ligne 125 : <add namespace="System.Web.UI" />


But MSDN talk about this mehtod.

thanks for your help
fabrice
 
P

Patrice

My first guess would be that it should appear in another section. Try
perhaps to double check the doc to make sure it should appear directly under
system.web as you seems to have done...

I quickly checked the doc but can't find it for now...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top