hi all....
In my application i fill data in Gridview. Now i want to assign BackGroundImage to this Gridview. This image is any image such as jpg which i put in BIN->DEBUG-> Images Folder of my application
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
anji marothuPosted Jun 10, 2013, 1:30 AM
Sunny SharmaPosted Jun 7, 2013, 7:19 AM
You just need to add BackImageUrl property. See the example below
-------------------------------------------------------------------------
<asp:GridView ID="gvShowFiles" runat="server" AutoGenerateColumns="True"
DataSourceID="SqlDataSource1" BackImageUrl="~/Images/confirm.png">
-------------------------------------------------------------------------
Happy Coding :)
Mark this as answer if it helps.
Thanks.