动态填充用控件asp.net

本文关键字:控件 asp net 填充 td 动态 | 更新日期: 2023-09-27 18:02:30

我得到了这个表:

*FormMaster is x wide*
        <table>
            <tr>
                <td>
                    <asp:Label runat="server" ID="lb_seq_header" Text="Sequence Header: "/>
                </td>
                <td>
                    <asp:TextBox runat="server" ID="tb_seq_header"/>
                </td>
            </tr>
            <tr>
                <td>
                    <asp:Label runat="server" ID="lb_asm_instr" Text="Sequence Instructions: "/>
                </td>
                <td>
                    <asp:TextBox runat="server" ID="tb_asm_instr" TextMode="MultiLine" Rows="15" style="resize:none"/> 
                </td>
            </tr>    
        </table>   

如何拉伸td中的文本框以填充宽度为x的格式管理器主体的其余部分?

我试过在每个td中添加一个div与一个文本框,应用'style'到每个文本框与"width:100%",添加style="width:y%"和style="width:x%" (x+y=100)为每个td对,但没有发生。

动态填充<td>用控件asp.net

首先,需要让表格填充它的容器。

为表格添加100%的宽度:

table { width:100%; }

然后,为文本框添加宽度