Le tabcontainer n'apparait pas

tralala232 Messages postés 10 Date d'inscription vendredi 10 janvier 2003 Statut Membre Dernière intervention 20 août 2009 - 19 mars 2007 à 10:23
tralala232 Messages postés 10 Date d'inscription vendredi 10 janvier 2003 Statut Membre Dernière intervention 20 août 2009 - 19 mars 2007 à 14:11
Salut je suis debutant
En fait j'ai ajouter un controle TabContainer, en local ca fonctionne parfaitement
j'ai bien mes onglets  

mais sur mon site ca ne marche le TabContainer n'apparait pas
j'ai une erreur 'sys' non defini
mais la pages apparait sans le tab
je pense qu'il doit me manquer une dll ou autre chose
que puis je faire ?

2 réponses

SuperBouly Messages postés 410 Date d'inscription dimanche 1 février 2004 Statut Membre Dernière intervention 8 mai 2010
19 mars 2007 à 13:27
bonjour,
il te manque des rubriques dans le web.config (<httpHandlers> entre autres)
Compare le tien avec celui d'un projet qui fonctionne : ajaxControltoolKit par ex.
@+Gilles
0
tralala232 Messages postés 10 Date d'inscription vendredi 10 janvier 2003 Statut Membre Dernière intervention 20 août 2009
19 mars 2007 à 14:11
en tous cas merci d'avoir repondu
j'ai fais comme tu m'as dit

j'ai comparré avec le web.config du repertoire C:\Program Files\Microsoft ASP.NET\AJAX Control Toolkit\SampleWebSite

mais ca marche toujour pas
je te copi mon web config car je cherche depuis quelques jours  et j'ai vraiment envi de me couper les veines

Lol
merci pour ton aide

<?xml version="1.0"?>
<configuration>
  <configSections>
    <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
      <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
          <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/>
          <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
          <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="Everywhere" />
          <section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" />
          <section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" />
        </sectionGroup>
      </sectionGroup>
    </sectionGroup>
  </configSections>


  <system.web>
 <trace enabled="true" />


   
      <controls>
       
 
      </controls>
   

    <!--
          Set compilation debug="true" to insert debugging
          symbols into the compiled page. Because this
          affects performance, set this value to true only
          during development.
    -->
    <compilation debug="true">
     
       
 
       
     
    </compilation>


    <httpHandlers>
      <remove verb="*" path="*.asmx"/>
     
     
     
    </httpHandlers>


    <httpModules>
     
    </httpModules>


    <siteMap defaultProvider="SamplesSiteMap">
     
       
       

    </siteMap>


   


  </system.web>




  <system.web.extensions>
    <scripting>
      <webServices>
      <!-- Uncomment this line to customize maxJsonLength and add a custom converter -->
      <!--
      <jsonSerialization maxJsonLength="500">
        <converters>
         
        </converters>
      </jsonSerialization>
      -->
      <!-- Uncomment this line to enable the authentication service. Include requireSSL="true" if appropriate. -->
      <!--
       
      -->


      <!-- Uncomment these lines to enable the profile service. To allow profile properties to be retrieved
           and modified in ASP.NET AJAX applications, you need to add each property name to the readAccessProperties and
           writeAccessProperties attributes. -->
      <!--
     
      -->
      </webServices>
      <!--
      <scriptResourceHandler enableCompression="true" enableCaching="true" />
      -->
    </scripting>
  </system.web.extensions>




  <system.webServer>
    <validation validateIntegratedModeConfiguration="false"/>
    <modules>
     
    </modules>
    <handlers>
      <remove name="WebServiceHandlerFactory-Integrated" />
     
     
     
    </handlers>
  </system.webServer>
</configuration>
0
Rejoignez-nous