//方法一:在提交时调用一段客户端的代码。
function a()
{
document.getElementById("btnok").value = '正在提交';
document.getElementById("btnok").onclick=function(){return false;};
return true;
}
<input id="btnok" runat="server" type="submit" value="确定" onclick="return a();"
onserverclick="Submit1_ServerClick" />
//方法二:必需要是 Asp.net服务器控件。(注意UseSubmitBehavior属性)
<asp:Button ID="btnSumbit" runat="server" UseSubmitBehavior="false"
OnClientClick="this.value='正在提交';this.disabled=true; "
Text="提交" OnClick="btnSumbit_Click" />