Update Table in Asp.Net MVC
Posted
by Xulfee
on Stack Overflow
See other posts from Stack Overflow
or by Xulfee
Published on 2010-05-14T10:48:26Z
Indexed on
2010/05/14
11:04 UTC
Read the original article
Hit count: 320
I have table on page i want to delete record from table and also update table after deletion record.
<%= Ajax.ActionLink("Delete Ajax", "PostTypeDelete",new { id = item.int_PostTypeId },
new AjaxOptions{LoadingElementId="status"}) %>
I used above code its working fine (it delete record) but it doesn't update table.
© Stack Overflow or respective owner