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 text field can contain a rather long description of 100 or more characters, and when this happens, my text file expands off-screen, which leads to the appearance of a horizontal scroll bar at the bottom of my browser, and I really do I do not want. I want my TextBox to expand to the width that the browser window is in, and can also resize when the user resizes his browser window.
Jagd source
share