0
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False">
           <Columns>
               <asp:TemplateField HeaderText="isbn">
                   <ItemTemplate>
                       <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
                   </ItemTemplate>
               </asp:TemplateField>
               <asp:TemplateField HeaderText="bookname">
                   <ItemTemplate>
                       <asp:Label ID="Label2" runat="server" Text="Label"></asp:Label>
                   </ItemTemplate>
               </asp:TemplateField>
           </Columns>
       </asp:GridView>

How to add data to gridview template using jquery ? I know how to bind server side; I need to know that how to bind data using jquery.

1 Answer 1

1

Based on class or Id and how it's rendering in browser, you can append data.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.