Can something like this, borrowed from jQuery, be done without jQuery and with ASP.NET AJAX only?
<a href="nojslink.html" class="clickMe">Click Me</a>
And then in an external JS file:
$('a.clickMe').click(function(){
alert('Thanks for clicking');
});