I\'m looking for a way to format DataGridViewTextBoxColumn so that the value to be databinded is formatted during databinding. For example I have a CompanyName property and
You could always call a custom format function like so from your aspx page:
And then in your code behind for that page:
protected string GetImagePath(object abbr){ return string.Format("{0}{1}.gif", Constants.URLs.PLATFORM_LOGOS, abbr.ToString());}