Hi
I am using html table having width 100% inside update panel.
But still width of update panel is not changing in vidual studio designer.
If I run the application table is displayed properly with 100% width.
Why this happens? Why update panel doesnt change its width?
Bellow is my html code :
<asp:UpdatePanel ID="UpdatePanel3" runat="server">
<ContentTemplate>
<table style="width:100%; border:solid 1px black;">
<tr>
<td>
</td>
</tr>
</table>
</ContentTemplate>
</asp:UpdatePanel>
I dont have any other code in design beside this.
Thanks in advance.