Click here to Skip to main content
15,891,607 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
am implemented the chat application.
it contains default.aspx and admin.aspx both uses the user control
which contains update panel,text box,send button etc , which is present in
abc.ascx file.
admin.aspx can able to see all the user who are logged in.
i want to display each users in individual tabs in damin panel
plz any one help me...
Posted
Updated 31-Oct-10 0:38am
v3
Comments
[no name] 31-Oct-10 10:30am    
What have you tried so far? What problems have you encountered.
We are here to help but first you must show some effort.

1 solution

I second Mark. By asp:Tab are you referring ajax control toolkit's Tab Panel? But just to get you started,

// Assuming your Tab's id is tab1
Label lbl = new Label();
lbl.Text = "Some sample text";

Panel pnl = new Panel();
pnl.ID = "someid";

pnl.Controls.Add(lbl);

tab1.Controls.Add(pnl);


You could do something like this.
 
Share this answer
 

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



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