Jquery Asp.Net GridView Data Binding
        Posted  
        
            by oraclee
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by oraclee
        
        
        
        Published on 2010-03-15T15:59:40Z
        Indexed on 
            2010/04/03
            4:03 UTC
        
        
        Read the original article
        Hit count: 533
        
Hi all;
<form id="form1" runat="server">
    <div>
        <asp:Button ID="Button1" runat="server" Text="Button" />
        <asp:GridView ID="GridView1" runat="server">
        </asp:GridView>
    </div>
</form>
How to call Method Jquery ?
public void GetGrid()
        {
            DataProviderDataContext db = new DataProviderDataContext();
            GridView1.DataSource = db.Employees.ToList();
            GridView1.DataBind();
        }
I do not know English pls help
© Stack Overflow or respective owner