jquery - Asp.net Obout grid, how can i post data without page refresh, using its built in function? -
i using obout grid in asp, how can use ajax filter grid
i mean have these fields above grid
name [......] date [......] date to[.......] year [......]
submit button
now dont want page refreshing, filter it, if click on submit button, grid should refresh , filter according critera, obout provide such functionality use component jquery or ajax?
thanks atif
yes, can achieve ajax.
you have put gridview in update panel , add asynchronous post trigger click button. like...
<asp:updatepanel runat="server" id="upnl" updatemode="conditional" childtrigger="true"> <contenttemplate> <asp:gridview></asp:gridview> </contenttemplate> <triggers> <asp:asyncpostbacktrigger controlid="btnsubmit" eventname="click" /> </triggers> </asp:updatepanel>
Comments
Post a Comment