Reputation: 18086
I want to make my grid view updated its view without postback using ajax update panal how ?
for example when I press edit it is the grid updated without load the whole page
Upvotes: 1
Views: 1337
Reputation: 176886
Do something as below :
<atlas:ScriptManager ID="ScriptManager1" runat="server" />
<atlas:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:GridView>
.....
</asp:GridView>
</ContentTemplate>
</atlas:UpdatePanel>
Upvotes: 1