$('#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);
}
}
I am sure you have a zealous fan stalking out there.
ReplyDeleteWeb Development
I am sure you have a zealous fan stalking out there.
ReplyDeleteWeb Development