I'm new in asp.net MVC and in app I need call action and update container div via ajax, How can I do it?
<div id="updateContainer">
</div>
@foreach(string str in new[] {"All", "Joe", "Jane", "Bob"}){
<div>
@Ajax.ActionLink(str,"ApprointmentData", new {id= str })
</div>
}