How to Design Bootstrap Layout
HiI have images in my Database.
Now i using Gridview for image binding working good.
But i need how to bind Gridview with Bootstrap layout binding from DB Records.
<linkhref="Styles/bootstrap.css" rel="stylesheet"/>
<script src="Scripts/bootstrap.js"></script>
<asp:GridViewID="grdvCrudOperation"runat="server"Width="940px"HorizontalAlign="Center"
OnRowCommand="GridView1_RowCommand"AutoGenerateColumns="false"AllowPaging="true"
DataKeyNames="ID"CssClass="table table-hover table-striped">
<Columns>
<asp:ButtonField CommandName="detail"ControlStyle-CssClass="btn btn-info"ButtonType="Button"Text="Detail"HeaderText="Detailed View">
<ControlStyleCssClass="btn btn-info"></ControlStyle>
</asp:ButtonField>
<asp:BoundField DataField="ID"HeaderText="ID"/>
<asp:BoundField DataField="Name"HeaderText="Name"/>
<asp:BoundField DataField="Address"HeaderText="Address"/>
</Columns>
</asp:GridView>