TabStrip not working

Last post 11-19-2003 11:28 AM by richposada. 0 replies.

Sort Posts:

  • TabStrip not working

    09-19-2002, 4:15 PM
    • Member
      50 point Member
    • richposada
    • Member since 08-07-2002, 4:53 AM
    • Posts 10
    Has anyone worked with the Microsoft TabStrip control? I can get the tab strip to display properly, but nothing happens when I click on a tab. I'm using the SelectedIndexChange() method to handle navigation but it never is called when the selected index changes. Am I missing something?

    Thanks,
    Rich
  • Re: TabStrip not working

    09-19-2002, 7:17 PM
    • Member
      5 point Member
    • kcusscam
    • Member since 08-25-2002, 6:03 PM
    • Posts 1
    Most of the information you will need about the tab strip is here: http://msdn.microsoft.com/library/default.asp?url=/workshop/WebControls/webcontrols_entry.asp
  • Re: TabStrip not working

    11-18-2003, 9:34 PM
    • Member
      615 point Member
    • zzoo
    • Member since 10-30-2003, 10:00 PM
    • Posts 123
    Me too, I have this kind of problem.
    Here's my simplified codes:

    <IE:TABSTRIP id="tab2_2" runat="server" OnSelectedIndexChanged="Get_Something" >

    Sub Get_Something(sender As Object, e As EventArgs)
    ...
    End Sub


    And nothing happens when I change the tab, though I implement a lot of actions in the function "Get_Something"
    Please help. Thanks
  • Re: TabStrip not working

    11-19-2003, 9:11 AM
    • Member
      615 point Member
    • zzoo
    • Member since 10-30-2003, 10:00 PM
    • Posts 123
    I know the reason now.
    We have to add AutoPostBack="true", and it's OnSelectedChange, without "d" at the end. There's no compilation error at all, so be careful.

    So it should be something like this:
    <IE:TABSTRIP id="myTab" runat="server" OnSelectedIndexChange="Do_Something" AutoPostBack="true">

  • Re: TabStrip not working

    11-19-2003, 11:22 AM
    • Member
      175 point Member
    • Whitney2
    • Member since 08-28-2002, 2:06 AM
    • The Netherlands
    • Posts 35
    The IE WebControls working not fine with FrameWorkSDK 1.1 so maby is that the problem.

    Microsoft® Internet Explorer WebControls are not currently supported.

    This product is only compatible with machines running builds of the .NET Framework (1.0.3705.0) and Visual Studio® .NET (7.0.9466).

    See : http://msdn.microsoft.com/downloads/samples/internet/ASP_DOT_NET_ServerControls/WebControls/default.asp

    Afther i see this problem, i decide that i don't wanna use this kind off controls in my application.

    I hope this helps you

    good luck

Page 1 of 1 (5 items)