vote up 0 vote down star

i have inserted a table web control in a panel.in that table 's cells i want to insert other user control like label, panel .i am not able to do that.is there any difference in normal table for layout and table web control.if it is.then how can i insert simple table in a panel.

flag

70% accept rate

2 Answers

vote up 1 vote down check

Hi Sahil

You need to provide us with a little more information.

I don't see any problems in what you are doing, can you show an example? Is it from code behind or in the aspx code?

<asp:Panel runat="server" id="pnl_something">
  <table>
     <tr>
         <td>
             <asp:Label runat="server" id="lbl_inside" />
         </td>
     </tr>
  </table>
</asp:Panel>

I haven't tested that code, just wrote here. If you are adding it from code behind, you should build the table first and in the Controls of the td add the label.

Hope it helped

link|flag
vote up 0 vote down

actually i was using asp:table instead of html:table .and in asp:table i was not able add any control.but now problem is solved.thanks

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.