Click here to Skip to main content
15,892,161 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I want to use some controls of AjaxcontrlToolkit in my project, when I add a control, I can run it successfully, but after that I can not see the controls in browser and they are not visible on it.
the code i use is:

XML
<asp:ScriptManager ID="ScriptManager1" runat="server">
    </asp:ScriptManager>

XML
<asp:TabContainer ID="TabContainer1" runat="server" ActiveTabIndex="0"
        BackColor="#FF99FF" BorderColor="#0066FF" BorderStyle="Double"
        BorderWidth="100px" ForeColor="Black" Height="79px"
         Width="735px">
        <asp:TabPanel runat="server" HeaderText="TabPanel1" ID="TabPanel1">
            <ContentTemplate>
                <asp:Button ID="Button1" runat="server" Text="Button" />
                <br />
                lll
            </ContentTemplate>
        </asp:TabPanel>
        <asp:TabPanel ID="TabPanel2" runat="server" HeaderText="TabPanel2">
        </asp:TabPanel>
    </asp:TabContainer>


also i should say that the control visible property has been set to true. What is the problem! Thanks a lot in advance!
(I use Visual-Studio 2008)
Posted
Updated 22-Jun-10 23:51pm
v3

1 solution

Well looking at the code for above issue won't help much. You are doing something wrong for sure and thus the behaviour.

I would suggest you to download any sample project already available on net (few are here at Code Project itself!), run them. See if they are working or not. This would help in investigating what is wrong with your current project.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900