Hi all,
I want to add an image(small red, black circle, star which I have in my images folder in my web application) in a datatble which I'm using for Export to Excel functionality.
My code is:
Image img = new Image();
img.ImageUrl = "~/images/imgred.png";
dt.Rows[row]["img"] = img;
But is showing: System.Web.UI.WebControls.Image in that particular column
Any help
Go to the complete details ...