Hi All,
I am using a popup control extender inside a update panel and a save button for save data,and a datagrid to display those data.
<
asp:Button ID = "submitCompensation" runat = "server" Text = "Add" CssClass = "deepBlueBtn"
OnClientClick = "return VerifyCompensation();" OnClick = "submitCompensation_ServerClick" />
and in cs page insert data into DB then Bind the grid by calluing a method
DataGridBind();
my problem is that the whole page is refreshed. But i want to refresh the updatepanel only .
Help me.
Thanks.