Ok I am still having some issues here. Ill admit i am not the most experinced Web Dev and I am probably missing something simple but here is what is going on.
I do
grdResults.DataSource = GetData();
grdResults.DataBind();
Then to format the column.
((Infragistics.Web.UI.GridControls.BoundDataField)grdResults.Columns[grdResults.Columns.Count – 1]).DataFormatString = "{0: $###,###,##0.00}";
I think get a object not set to a instance error, which appears to be because the columns in the grid do not exist yet. Which is rather confusing.
What exactly do i need to do to correct this? Thanks so much!