S
simon
If I have:
<table>
<tr runat=server id=row1>
<td><asp:listbox runat=server id=lst1></asp:listBox></td>
</tr>
</table>
then I get that reference object has the value of nothing in code behind file:
Protected WithEvents lst1 As System.Web.UI.WebControls.ListBox
If I have
<table>
<tr>
<td><asp:listbox runat=server id=lst1></asp:listBox></td>
</tr>
</table>
than it works.
So I can't have one server control included in other, except if I use panel control?
Regards,S
<table>
<tr runat=server id=row1>
<td><asp:listbox runat=server id=lst1></asp:listBox></td>
</tr>
</table>
then I get that reference object has the value of nothing in code behind file:
Protected WithEvents lst1 As System.Web.UI.WebControls.ListBox
If I have
<table>
<tr>
<td><asp:listbox runat=server id=lst1></asp:listBox></td>
</tr>
</table>
than it works.
So I can't have one server control included in other, except if I use panel control?
Regards,S