hi asim
im assuming that you have it in your database
<asp:GridView ID="GridView1" runat="server">
<Columns>
<asp:TemplateField>
<ItemTemplate>
<asp:Image ID="Image1" ImageUrl="bind the column name from database here" runat="server" />
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
for other columns you can repeat this template field.
hope it will help
thanks