我将此代码用于删除按钮以获取确认消息:
<asp:Button runat="server" ID="btnDelete"
OnClick="btnDelete_Click"
OnClientClick="return confirm('Do you want to delete the record ? ');" />
这是在服务器端添加确认客户端脚本的方法:
btnDelete.Attributes.Add("onclick",
"return confirm('Do you want to delete the record ? ');")
但是我在调试时遇到(预期类型)错误有人可以帮忙吗?谢谢