I have an update panel, which I'm not refreshing when I click on the delete button. I know that the line is being deleted from BC if I leave the page and come back, then the row is no longer any thoughts why the update panel is not being refreshed?
& asp: UpdatePanel id = "Update Pencil 1" runat = "server" updatemod = "conditional" & gt; Secure Zero btnDeleteMessages_Click (Object Sender, EventArgs e) {DeleteRow (); UpdatePanel1.Update (); }
If you are using any type of data-bound control inside the update In the panel, you will need to call the databind () method on each of those controls to see updates for the underlying data reflected on your page. I suspect that this may be a problem, especially if your delete () method changes the underlying data, and not for the table.
Comments
Post a Comment