gridview提示框的使用
Griewd的提示框的使用,为什么单独使用那行(红色标注)可以,而再加一个条件就不行了????
if (e.Row.RowType == DataControlRowType.DataRow)
{
if (e.Row.RowState == DataControlRowState.Normal || e.Row.RowState == DataControlRowState.Alternate)
{
((LinkButton)e.Row.Cells[6].Controls[0]).Attributes.Add("onclick", "javascript:return confirm('你确认要编辑:\"" + e.Row.Cells[1].Text + "\"吗?')"); }
else if (e.Row.RowState == DataControlRowState.Normal || e.Row.RowState == DataControlRowState.Alternate)
{
((LinkButton)e.Row.Cells[7].Controls[0]).Attributes.Add("onclick", "javascript:return confirm('你确认要删除:\"" + e.Row.Cells[1].Text + "\"吗?')");
}
}
我想两个都实现效果,求高手解答!!!!!! --------------------编程问答-------------------- 你要实现什么 --------------------编程问答-------------------- --------------------编程问答-------------------- 非常感谢! --------------------编程问答-------------------- 哈哈,发现了,孟子是夜猫子... --------------------编程问答-------------------- 语句逻辑错误
补充:.NET技术 , ASP.NET