Hello ...
I am using this line of code in C# code behind ...
labelEmail.Text = "<u>Email:</u> <a href=mailto:\"" + objRowData["colEmailFirm"].ToString() + "\">" + objRowData["colEmailFirm"].ToString() + "</a>";
......
I am getting an output as ...
Email: mailto:"abcdef@gmail.com" BUT I want an output as Email: mailto:abcdef@gmail.com
-------
How to get rid of the extra quotes ( ...
Go to the complete details ...