davecapone
Programmer
I have a DataGrid bound to a DataSource which contains a boolean DataField. I am wondering if there is a way to display Yes/No in the DataGrid instead of True/False?
Can you do:
<%#
if (DataBinder.Eval(Container.DataItem,"boolField")
response.write "Yes";
else
response.write "No";
%>
Can you do:
<%#
if (DataBinder.Eval(Container.DataItem,"boolField")
response.write "Yes";
else
response.write "No";
%>