Exporting to excel (VS 2005 .Net c#), I am having problems with the €.
10660 56660 € 158,58 € 158,58
is becoming
10660 56660 € 158,58 € 158,58
It is the footer of a grid, extracted using
if (gv.FooterRow != null)
{
GridViewExportUtil.PrepareControlForExport(gv.FooterRow);
table.Rows.Add(gv.FooterRow);
}
Any ideas what can be done ?
thanks
10660 56660 € 158,58 € 158,58
is becoming
10660 56660 € 158,58 € 158,58
It is the footer of a grid, extracted using
if (gv.FooterRow != null)
{
GridViewExportUtil.PrepareControlForExport(gv.FooterRow);
table.Rows.Add(gv.FooterRow);
}
Any ideas what can be done ?
thanks