Update for Tabstrip controls to .NET 2.0 ?

Last post 04-05-2009 9:36 AM by ad_dc. 12 replies.

Sort Posts:

  • Update for Tabstrip controls to .NET 2.0 ?

    12-12-2005, 8:07 AM
    • Member
      15 point Member
    • Stokholm
    • Member since 12-12-2005, 8:29 AM
    • Posts 3

    Is there an update for the tabstrip control to .NET 2.0  ???

    I can't figure out how to use the tabstrip in vs 2005. The tabs just return plain text

    --------------------------------------------------------------

    VS2005 don't use the standard ISS to execute web-applications, so I have tried to place the webctrl_ client folder in my project folder (c:\projects\) and also in my website folder  (c:\projects\website) but it still don't work.

    I've also tried to put some code in my web.config file to change the path:

    <configurationSections><section name="MicrosoftWebControls" type="System.Configuration.NameValueSectionHandler, System, Version=1.0.3300.0,Culture=neutral,PublicKeyToken=b77a5c561934e089"/></configurationSections>

    <MicrosoftWebControls><add key="CommonFiles" value="TabstripHandlers" /></MicrosoftWebControls>

     

  • Re: Update for Tabstrip controls to .NET 2.0 ?

    12-14-2005, 2:13 PM

    To get it to work in 2.0.   Assuming that your website has the webctrl_client folder and tabstrip.htc file under it as:
    my_website\webctrl_client\1_0\TabStrip.htc

    You will need to point to it using the config settings.

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

    and

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

    Hope this helps.

  • Re: Update for Tabstrip controls to .NET 2.0 ?

    12-20-2005, 7:32 AM
    • Member
      15 point Member
    • Stokholm
    • Member since 12-12-2005, 8:29 AM
    • Posts 3

    Thank you.   It works.

    I used the configSection wrong. I can see that now.

  • Re: Update for Tabstrip controls to .NET 2.0 ?

    07-19-2006, 9:31 AM
    • Member
      10 point Member
    • hemapriya
    • Member since 07-19-2006, 8:28 AM
    • Posts 2

    Can you please explain me where i should add the following line of code. I tried adding the web.config . Still it is not working for me .

     

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

  • Re: Update for Tabstrip controls to .NET 2.0 ?

    08-03-2006, 9:03 AM
    • Member
      5 point Member
    • lelo66sz
    • Member since 08-03-2006, 12:58 PM
    • Posts 1

    Maybe you forgot to replace "my_website" in value="/my_website/webctrl_client/1_0/"

    I placed it at the end just before  </configuration>

    Greetings Lelo

  • Hmm [^o)] Re: Update for Tabstrip controls to .NET 2.0 ? Mine still does not work - 8-10-2006

    08-10-2006, 4:48 PM
    • Member
      150 point Member
    • leonat
    • Member since 02-24-2005, 1:01 PM
    • Posts 30

    Hello,

    My tabstrip page is still not working: I am using VS 2005, ASP 2.0.

    _______________________________________________________

    My web.config file looks like this:

    <configuration>

     

    <configSections>

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

    </configSections>

    <MicrosoftWebControls>

    <add key="CommonFiles" value="localwebPOS/webctrl_client/1_0/"/>

    </MicrosoftWebControls>

     

    <appSettings/>

    <connectionStrings/>

    <system.web>

    _________________________________

     

    I still have this entry in my tabstrip.aspx page

    <%@ Register TagPrefix="ie" Namespace="Microsoft.Web.UI.WebControls" Assembly="Microsoft.Web.UI.WebControls" %>

    ___________________________________

    I have the Microsoft.Web.UI.WebControls.dll  in the /bin folder in the web application.

    _____________________________________

     

    My web page still looks like this

     Home About us Products Support Contact us

    The site has no click events.

    What have I missed?

     

     

     

     

  • Re: Update for Tabstrip controls to .NET 2.0 ? Mine still does not work - 8-10-2006

    08-11-2006, 11:48 AM

    I believe it is not finding your client scripts.  You may want to check

    <add key="CommonFiles" value="localwebPOS/webctrl_client/1_0/"/>

    And make sure the path is valid is respect to the web server root.  If you are running your app in VS2005 then you will most likely need to use

    <add key="CommonFiles" value="/localwebPOS/webctrl_client/1_0/"/>

    If localwebPOS is your project name.  If you deploy this to an actual web server you may only need

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

     

  • Re: Update for Tabstrip controls to .NET 2.0 ?

    08-11-2006, 11:56 AM

    <?xml version="1.0"?>
    <configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
      <configSections>
        <!--
          define a section for the Microsoft IE Web Controls
        -->
        <section name="MicrosoftWebControls" type="System.Configuration.NameValueSectionHandler,System,Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
      </configSections>
     
      <connectionStrings>
      </connectionStrings>

      <!--
        The MicrosoftWebControls section defines items required for the Microsoft IE Web Controls
      -->
      <MicrosoftWebControls>
        <add key="CommonFiles" value="/myproject/webctrl_client/1_0/"/>
      </MicrosoftWebControls>

      <system.web>
      </system.web>

      <appSettings>
      </appSettings>
    </configuration>

  • Re: Update for Tabstrip controls to .NET 2.0 ?

    08-11-2006, 12:15 PM
    • Member
      150 point Member
    • leonat
    • Member since 02-24-2005, 1:01 PM
    • Posts 30

    It worked.   Thank you very much.

  • Re: Update for Tabstrip controls to .NET 2.0 ?

    08-12-2006, 2:00 AM
    • Member
      10 point Member
    • hemapriya
    • Member since 07-19-2006, 8:28 AM
    • Posts 2

    <%

    @ Register TagPrefix="ie" Namespace="Microsoft.Web.UI.WebControls" Assembly="Microsoft.Web.UI.WebControls" %>

     

    <p><ie:TabStrip ID ="TabStripctl" runat="server" CssClass="Tabs" TabDefaultStyle="background:steelblue;color:white;padding:1px 4px 1px 4px;"

    TabHoverStyle="background:powderblue;color:white;padding:1px 4px 1px 4px;" TabSelectedStyle="background:powderblue;color:black;padding:1px 4px 1px 4px;" TargetID="MultiPageCtl" Width="432px" >

    <ie:Tab Text="Students"></ie:Tab>

    <ie:TabSeparator></ie:TabSeparator>

    <ie:Tab Text="LessonTemplate"></ie:Tab>

    <ie:TabSeparator></ie:TabSeparator>

    <ie:Tab Text="Lesson"></ie:Tab>

    </ie:TabStrip><ie:multipage id="MultiPageCtl" runat="server" CssClass="MultiPage">

    <ie:MultiPage ID="StudentCtl" runat="Server">

    </ie:MultiPage>

    </ie:multipage> </p>

     

     

    Am unable to add the page view under the Multipage  , pls help me

  • Re: Update for Tabstrip controls to .NET 2.0 ?

    12-06-2006, 6:14 AM
    • Member
      5 point Member
    • asprabahar
    • Member since 12-06-2006, 11:08 AM
    • UAE
    • Posts 5

    Hi i am also having the same problem not able to add the Pageview i am using visual studio 2005 and asp.net 2.0 .would you get any solution.plz reply me

    Thanks & Regards
    Anu
  • Re: Update for Tabstrip controls to .NET 2.0 ?

    12-06-2006, 10:55 AM
    • Member
      10 point Member
    • willowdell
    • Member since 12-06-2006, 3:34 PM
    • Posts 2

    When I add the following line to my web.config file, I get the following error: 

    'Could not find schema information for the element 'http://schemas.microsoft.com/.NetConfiguration/v2.0:configuration'.

     

    web.config file:

    <

    configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">

     

    Does anyone have any idea why i'm getting the error?  Thanks!!!

  • Re: Update for Tabstrip controls to .NET 2.0 ?

    04-05-2009, 9:36 AM
    • Member
      73 point Member
    • ad_dc
    • Member since 10-04-2007, 6:15 AM
    • Posts 76

     great, but what about working in runtime ? I mean using visual studio ?

Page 1 of 1 (13 items)