I'm using the tabcontainer provided by the ajax control toolkit in asp.net, what I want is to show a single tab for just the admins so decided to use the LoginView control, but here comes the problem. I can't use the Login view inside the TabContainer. It's sth like this:
<asp:TabContainer ID="TabContainer" runat="server" ActiveTabIndex="0">
<asp:LoginView ID="LoginView1" runat="server">
<RoleGroups>
<asp:RoleGroup Roles="TopAdmin">
<ContentTemplate>
<asp:TabPanel ID="AdminSettings" runat="server" HeaderText="تنظیمات ">
</ContentTemplate>
</asp:RoleGroup>
</RoleGroups>
</asp:TabPanel>
</asp:LoginView>
</asp:TabContainer>