asp.net mvc 3 - Div won't refresh with Ajax.ActionLink -
i trying use ajax.actionlink refresh list of items on page. can basic ajax updates working in test page without issue, in particular case i'm not able work. my index controller , view simple (see below). index view renders list action, items listed , ajaxlinks are. ajaxlinks call "updatestatus" action changes status of item. after happens list should no longer show item return list action. however, while code executes no errors, page nt update or refresh. can see problem? public function index(optional byval status string = "pending") actionresult viewbag.status = status return view() end function public function list(optional byval status string = "pending") actionresult 'code populate model filtered list here' return view(plvm) end function public function updatestatus(byval id integer, byval status string, byval actionstatus string) 'code update status here...