我有<asp:TextBox TextMode="MultiLine" Height=350 Width="200">
并且周围有元素。
我不想让用户更改asp:TextBox
的高度和宽度,因为它会与周围其他元素的对齐混淆。
解?
答案 0 :(得分:4)
答案 1 :(得分:3)
如果要将其添加到文本框标记中,可以这样执行:
<asp:TextBox ID="TextBox7" runat="server" MWidth="245px" Height="245px"
TextMode="MultiLine" style="resize:none"></asp:TextBox>