kartal
kartal

Reputation: 18086

put gridview in ajax update Panel

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

Answers (1)

Pranay Rana
Pranay Rana

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

Related Questions