aspx
function IsChekSubmit(MybtSubmit) {
MybtSubmit.disabled = true;
MybtSubmit.value = "提交中...";
__doPostBack(MybtSubmit.name, ""); //执行服务器端button1的click事件 这里特别要注意是object1.name 而不能是 object1.id, 因为页面可能含有母版页
}
this.Page.ClientScript.GetPostBackEventReference(btSubmit, null); //让客户端执行服务器端事件。