Hi;
Html Code:
<asp:DataGrid ID="myGrid">
<Columns>
<asp:BoundColumn DataField="CustomerName" HeaderText="Customer">
<ItemStyle Font-Bold="True" />
</asp:BoundColumn>
</Columns>
</asp:DataGrid>
Code Behind:
public string TestFunction(string str)
{
return str.replace("A","B");
}
how to call TestFunction ? DataField="TestFunction(CustomerName)"
Best Regards...