0
thankx for reply but will it be work in case if i will display the total price....
because i think it will display an error during addition of price like "usd 1231 + usd 2465"
what will i do to resolve this problem.?
0
try this
before binding the datatable to gridview.
foreach(DataRow dr in datatable1)
{
dr["price"]=ConfigurationSettings.AppSettings["Currency"] + dr["Price"].ToString();
}
and in web.config.
<AppSettings>
<add key="Currency" value ="USD"/>
</AppSettings>