在网上搜查了很久,关于asp.net中多行文本框高度自适应内容的解决方法
<td style="width:700px" align=center valign=top>
<asp:TextBox runat="server" ID="txtContent" Width=100% ReadOnly=true Wrap=true TextMode="MultiLine" MaxLength="1073741823" BorderWidth="0px" style="OVERFLOW-Y:visible> </asp:TextBox>
</td>
红色字体的这些属性加入到textbox中,那么在ie6下面是能够体现出效果的。
然而仅仅这样,在ie7或者ff中却还不够。
在ie7中,必须把aspx页中
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
这一行注释掉,原因在百度空间yangletter的博客中