在以前的1.0/1.1中,為服務器端控件添加客戶端事件,一般情況要用到:
this.btnSub.Attributes["onclick"]="checkConfim();";
這種形式。
2.0中直接:
<asp:Button ID="btnSub" OnClientClick="checkConfim();" runat="server" Text="Submit" OnClick="btnSub_Click" />
javascrip代碼:
function checkConfim()
{
if(!confirm("Are you sure you want to do this?"))
{
event.returnValue=false;
}
}