gridview boundfield

时间:2011-01-14 20:27:03

标签: asp.net

如何访问Boundfield对象?

我在aspx上有OnDataBinding =“MyFunction”,然后在后面的代码中我保护了void MyFunction(对象发送者,Gridview e)。我无法找到Boundfield对象。我可以通过e.Column [1]访问第一列,但我对DataFormatString属性感兴趣,这是Boundfield对象的属性。

感谢。

1 个答案:

答案 0 :(得分:3)

例如,如果您想要显示时间(并且您的2.列是日期列):

VB.Net

DirectCast(Me.GridView1.Columns(1), BoundField).DataFormatString = "{0:t}"

C#

((BoundField)(this.GridView1.Columns[1])).DataFormatString = "{0:t}";