I have an image inside the image folder; I want to show that in a RadGrid using a data table which is populated from code behind
How can I achieve this?
I have an image inside the image folder; I want to show that in a RadGrid using a data table which is populated from code behind
How can I achieve this?
DataTable dt = new DataTable();
dt.Columns.Add("Image Column");
dt.Rows.Add("<img src= ../image/image.png />");
RadGrid1.DataSource = dt;