javascripte事件

摘要:javascripte事件

於 .cs檔中加入按鈕script事件

this.ImageButton11.Attributes.Add("onclick", "return ImageButton11_onclick();");

 

.aspx

function ImageButton11_onclick()
{
    var s = "確認刪除嗎?"
    if (!confirm(s))
    {
        return;
    }
    
}