
http://www.sfgate.com/cgi-bin/object/article?f=/c/a/2012/03/03/BUIO1NFAMI.DTL&object=%2Fc%2Fpictures%2F2012%2F03%2F02%2Fbu-brogrammer03__SFC0104118088.jpg
$('#usersdiv').load('/home?name=' + $(this).val() + ' #usersdiv');
public class HomeController
{
public ActionResult Index(String name = "")
{
List<user> users = GetUsers()
.Where(u => u.Name.ToLower().StartWith(name.ToLower())
|| String.IsNullOrEmpty(search)).ToList();
return view(users);
}
}
"true" enableViewStateMac="true" viewStateEncryptionMode="Auto"></pages>