protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
((LinkButton)(e.Row.Cells[1].Contorls[0])).Attributes.Add("onclick", "return confirm('你确定删除 " + strTitle + " 吗?');");
}
}
我的电脑调试成功……
绝对没有问题……
要是你的还不行那算我没有说……