Disable button after click and display text [Processing...]
Or the jQuery alternative: $("form").submit(function() { $("#").val("Processing..."); $("#").attr("disabled", "disabled"); });
Or the jQuery alternative:
$("form").submit(function() {
$("#<%=btnBuy.ClientID %>").val("Processing...");
$("#<%=btnBuy.ClientID %>").attr("disabled", "disabled");
});