嗨,我有一个数据网格
<asp:BoundField DataField="PrenotazioneEffettuata" HeaderText="Pren. Effettuate"
SortExpression="PrenotazioneEffettuata" />
PrenotazioneEffettuata 是一个布尔字段。
在网格中有真/假值
是否可以打印是/否而不是真/假?
谢谢
嗨,我有一个数据网格
<asp:BoundField DataField="PrenotazioneEffettuata" HeaderText="Pren. Effettuate"
SortExpression="PrenotazioneEffettuata" />
PrenotazioneEffettuata 是一个布尔字段。
在网格中有真/假值
是否可以打印是/否而不是真/假?
谢谢
您可以将其设置为模板字段并更改行数据绑定事件中的值。像...
<ItemTemplate>
<asp:Label runat="server" ID="lbl"> </asp:Label>
</ItemTemplate>
背后的代码
protected void yourGrid_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
DataRow dr = ((DataRowView)e.Row.DataItem).Row;
if(Convert.ToBoolean( dr["PrenotazioneEffettuata"]))
{
((Label)e.Row.FindControl("lbl")).Text = "Yes";
}
else
{
((Label)e.Row.FindControl("lbl")).Text = "No";
}
}
}