i am unable to show currency format on DataGridView. Can you people look this code.
private void dataGridView1_DataBindingComplete(object sender,
if it is windows form than write this code before you are binding data to the grid...something as below in the form consturctor...
public Form1() { this.dataGridView1.Columns["UnitPrice"].DefaultCellStyle.Format = "c"; }
if its ASP.Net try something like DataFormatString="{0:c}"
DataFormatString="{0:c}"