Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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>
share|improve this question
maybe I should place the whole tabs in the view? – Milad Jul 14 '12 at 6:17

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.