I have the following code
<table cellpadding="2" cellspacing="2">
<tr>
<td>Factory:</td>
<td>
<asp:TextBox ID="txtFactory" runat="server" Width="100%"></asp:TextBox>
</td>
</tr>
</table>
My problem is that sometimes the factory textbox can hold a fairly long description of 100 or more characters, and when this happens my textbox widens beyond the edge of the screen, which then causes a horizontal scrollbar to appear at the bottom of my browser, and I really don't want that. What I want is to have my TextBox extend to the width that the browser window is at, and to also be able to resize when the user resizes their browser window.