即使单击取消,确认警报也始终返回true

时间:2013-05-27 16:16:00

标签: javascript asp.net alert code-behind confirmation

delete.Attributes.Add("onclick", "return confirm('Are you sure to delete?');");

此代码一直运行良好,但在我的新项目中,即使您在警报窗口单击取消,它也始终返回。

我知道我的项目之间唯一不同的是,新的是4.5 .Net框架,而其他的是4.0

使用WebForms Asp.Net

有什么建议吗?

这是代码:

protected void gvEnterprises_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { name = HttpUtility.HtmlDecode(e.Row.Cells[1].Text); var delete = (LinkButton)e.Row.Cells[0].Controls[0]; delete.Attributes.Add("onclick", "return confirm('Are you sure to delete [" + name + "]?');"); delete.Text = "Del"; delete.Style.Add("color", "#D00000"); } }

0 个答案:

没有答案