In the grid it shows $ is there any way i can show Euro, and i wanted to change thsi dynamically.
regardsPeter
Hello Peter,
The currency is set by the culture. You can change this programmatically by using the following code.
System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("de-DE");
de-DE is the culture info name (I chose German because it would show a Euro).
Note that this will also affect things like date formats and number formatting.
Let me know if you have any other questions about this.
Elizabeth AlbertLocalization Engineer
Thank you, This changes all the format in a page, is there any way i can change only the currency in the Grid alone. To achieve this, is there any work around.