我在 asp.net (c#) 中使用绑定到 EntityDataSource 的 GridView
我想将一列文本设置为 3 行(高度),而不是适合宽度。
我玩了一点,但没有成功这里是代码本身
<asp:TemplateField HeaderText="Description" SortExpression="Description">
<EditItemTemplate>
<asp:TextBox ID="TextBox1" runat="server" Text='<%# Bind("Description") %>'></asp:TextBox>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="Label1" runat="server" Text='<%# Bind("Description") %>'></asp:Label>
</ItemTemplate>
<ControlStyle Height="20px" />
<ItemStyle Height="50px" Width="150px" Wrap="False" />
</asp:TemplateField>
顺便说一句,我没有特别需要它作为模板字段......
有人有想法吗?谢谢 !