Is there any way to embed a image in asp.net MVC web grid column?
I like to display a information icon beside the webgrid column header.
@if(grid != null)
{
@grid.GetHtml(tableStyle:"table table-striped",headerStyle:"webgrid-header text-center",
columns:grid.Columns(
grid.Column(columnName:"Id", header: "Id"),
grid.Column("Description", header:"Mode"),
grid.Column("Registrations", header: "Registrations" + @<text><img src="~/Images/info.jpg" class="infoImageIcon" /></text>),
grid.Column("Attempts", header:"Attempts")
));
}