views:

8

answers:

0

Does ASP.NET's ScriptManager have any sort of "helper" for binding to HTML control events? This would be similar to jQuery:

$('#foo').bind('click', function() {
  alert('User clicked on "foo."');
});