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>