asp:TextBox multiline 只读条件下的高度问题

来源:互联网 发布:欧洲难民问题知乎 编辑:程序博客网 时间:2024/05/16 01:37


asp:TextBox multiline只读下 滚动条是不能拖动的

要看不在当前屏幕的内容用鼠标在文本框中向下拖动也是看到内容 但比较麻烦 按照自动比例展开

<tr hight="25px">                            <td width="15px">                            </td>                            <td style="width: 100px">                                <asp:Label ID="LabelDescriptionTitle" runat="server" CssClass="TitleLabel" Width="90px">备注</asp:Label>                            </td>                            <td colspan="3" align="left" valign="bottom">                                <asp:TextBox ID="TextBoxDescription" runat="server" Enabled="false" TextMode="MultiLine"                                    MaxLength="500" Width="550" CssClass="TextBox" Height="80px"></asp:TextBox>                                 <asp:Label ID="lblMaxWords" Visible="false" runat="server">不得超过500字</asp:Label>                            </td>                            <td width="120">                            </td>                            <td>                                                             </td>                        </tr>

去掉tr的高度 和textbox高度调整为100%

<tr>                            <td width="15px">                            </td>                            <td style="width: 100px">                                <asp:Label ID="LabelDescriptionTitle" runat="server" CssClass="TitleLabel" Width="90px">备注</asp:Label>                            </td>                            <td colspan="3" align="left" valign="bottom">                                <asp:TextBox ID="TextBoxDescription" runat="server" Enabled="false" TextMode="MultiLine"                                    MaxLength="500" Width="550" CssClass="TextBox" Height="100%"></asp:TextBox>                                 <asp:Label ID="lblMaxWords" Visible="false" runat="server">不得超过500字</asp:Label>                            </td>                            <td width="120">                            </td>                            <td>                                                             </td>                        </tr>


原创粉丝点击