我有一个使用 <asp:BoundField DataField="Comments" HeaderText="COMMENTS" />
的网格视图,我只想在填充网格视图时显示 Commemnt 列中的前 20 个字符。有没有办法在 VB 中做到这一点?谢谢。
一种方法是在代码隐藏中使用 RowDataBound
事件:
Protected Sub Gridview1_RowDataBound(sender As Object, e As GridViewRowEventArgs) Handles Gridview1.RowDataBound
Select Case e.Row.RowType
Case DataControlRowType.DataRow
' assuming the comments column is the first column '
If e.Row.Cells(0).Text.Length > 20 Then
e.Row.Cells(0).Text = e.Row.Cells(0).Text.Substring(0, 20)
End If
End Select
End Sub
请注意,您只能使用 BoundFields
以这种方式访问文本。有了TemplateFields
,您需要使用 FindControl
来获取控件的引用(例如TextBox
)。
如果要使用TemplateField
还可以限制 aspx 标记上的文本:
<asp:TemplateField HeaderText="Commnents">
<ItemTemplate>
<asp:TextBox ID="txtID"
MaxLength="20" runat="server"
Text='<%# DataBinder.Eval(Container.DataItem, "Comments") %>'>
</asp:TextBox>
</ItemTemplate>
</asp:TemplateField>