我有TabContainer控件的问题

时间:2011-07-01 12:17:27

标签: c# asp.net ajax controls

当我运行它时,它不会出现在屏幕上..但它确实出现在visual studio 2010的设计视图中。我还想从左到右,从右到左设置标签:

          <asp:TabContainer ID="TabContainer1" runat="server" ActiveTabIndex="2" 
   Height="584px" Width="739px" AutoPostBack="True" BackColor="#666699" 
   BorderColor="#666699">
          <asp:TabPanel ID="Questions" runat="server" HeaderText="שאלות">

              <ContentTemplate>

                  <asp:GridView runat="server" Height="547px" 
                      style="margin-left: 2px; margin-top: 15px" Width="667px">
                  </asp:GridView>

                    </ContentTemplate>
              </asp:TabPanel>
                <asp:TabPanel ID="Answers" runat="server" HeaderText="תשובות">
              <ContentTemplate>
                  <asp:GridView ID="GridView1" runat="server" Height="547px" 
                      style="margin-top: 17px" Width="666px">
                  </asp:GridView>
                    </ContentTemplate>
              </asp:TabPanel>
                <asp:TabPanel ID="Responses" runat="server" HeaderText="תגובות">
              <ContentTemplate>
                  <asp:GridView ID="GridView2" runat="server" Height="547px" 
                      style="margin-top: 21px" Width="666px">
                  </asp:GridView>
                    </ContentTemplate>
              </asp:TabPanel>
   </asp:TabContainer>

2 个答案:

答案 0 :(得分:0)

对于从右到左的设置选项卡,在页面上添加以下样式:

.ajax__tab_header
{
     text-align: right;
}

但是为了解决可见性问题,信息还不够。您是否在代码隐藏中使用可见性属性?

答案 1 :(得分:0)

甚至更好:

.ajax__tab_header
{
     direction: rtl;
}

也将切换选项卡的顺序。 (对于rtl语言)