日期:2014-05-16  浏览次数:20565 次

让HTML格式Table中的TextBox宽度自动适应表格的宽度
让HTML格式Table中的TextBox宽度适应表格的宽度。
<table border="1">
                <tr>
                    <td width="100">姓名</td>
                    <td width="100">
                        <asp:TextBox ID="Name" runat="server"></asp:TextBox></td>
                    <td width="100">性别</td>
                    <td width="100">
                        <asp:DropDownList ID="Sex" runat="server" Height="16px" Width="100px">
                        </asp:DropDownList>
                    </td>
                    <td width="100">出生年月</td>
                    <td width="100">
                        <asp:TextBox ID="Birth" runat="server"></asp:TextBox></td>
                    <td width="100" rowspan="5">
                        <asp:Image ID="Picture" runat="server" /></td>
                </tr>
                <tr>
                    <td class="auto-style2">专业年级</td>
                    <td colspan="2" class="auto-style2">
                        <asp:TextBox ID="Grade_Major" runat="server" Width="250px"></asp:TextBox></td>   //宽度
                    <td class="auto-style2">手机</td>
                    <td colspan="2" class="auto-style2">
                      &nbs