如何在详细信息视图中为命令字段添加删除确认提示?

如何在详细信息视图中为命令字段添加删除确认提示?,第1张

如何在详细信息视图中为命令字段添加删除确认提示?

我找到了问题的答案

我的答案:

 protected void DViewComputer_DataBound1(object sender, EventArgs e){    int noRow = DViewComputer.Rows.Count - 1;//get the no of record    if (noRow >0)    {        Button button = (Button)(DViewComputer.Rows[noRow].Cells[0].Controls[2]);        // Add delete confirmation        ((System.Web.UI.WebControls.Button)(button)).onClientClick = "if (!confirm('Are you sure " +         "you want to delete this record?')) return;";    }}

无论如何,感谢您的帮助。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5675713.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存