My gridview in asp.net has a column that shows currency in Euro format which is 89.483,00
I am aware how to format the strings but not sure how to get the currency data in row databound event and modify the same and send back to the gridview.
String format that goes for Euro format is as;
String.Format("{0:0.0,0}", temp1) // here temp1 would hold the non-Euro format currency data
Are you aware that you can set the culture for the site e.g. in web.config and not have to worry about doing this for every single string?
http://msdn.microsoft.com/en-us/library/bz9tc508.aspx