asp.net中gridview如何为编辑和删除按钮添加确认提示
主要是防止误操作,如果选择的控件类型是删除按钮,则弹出提示我的思路是在RowCreated事件中添加判断,但是我不知道怎么判断所选按钮的类型是否符合条件我用的是VS200...
主要是防止误操作,如果选择的控件类型是删除按钮,则弹出提示
我的思路是在RowCreated事件中添加判断,但是我不知道怎么判断所选按钮的类型是否符合条件
我用的是VS2005,跟2003的似乎有区别,以下是VS2003的代码
private void DataGrid1_ItemCreated(object sender,
System.Web.UI.WebControls.DataGridItemEventArgs e)
{
//如果是DataGrid中的项、交替项或编辑项,则执行
if(e.item.itemtype == listitemtype.item||
e.item.itemtype == listitemtype.alternatingitem||
e.item.itemtype == listitemtype.edititem)
{
//定义对“删除”单元格中控件的引用,此处的控件是Button
Button btnDel = (Btton)e.Item.Cells[0].Controls[0];
btnDel.Attributes.Add("onclick","return confirm('是否确认删除?');");
btnDel.Text = "删除";
}
}
相同的功能如何在VS2005中实现?还有就是,以前的ItemCreated事件是不是跟现在的RowCreated事件一样? 展开
我的思路是在RowCreated事件中添加判断,但是我不知道怎么判断所选按钮的类型是否符合条件
我用的是VS2005,跟2003的似乎有区别,以下是VS2003的代码
private void DataGrid1_ItemCreated(object sender,
System.Web.UI.WebControls.DataGridItemEventArgs e)
{
//如果是DataGrid中的项、交替项或编辑项,则执行
if(e.item.itemtype == listitemtype.item||
e.item.itemtype == listitemtype.alternatingitem||
e.item.itemtype == listitemtype.edititem)
{
//定义对“删除”单元格中控件的引用,此处的控件是Button
Button btnDel = (Btton)e.Item.Cells[0].Controls[0];
btnDel.Attributes.Add("onclick","return confirm('是否确认删除?');");
btnDel.Text = "删除";
}
}
相同的功能如何在VS2005中实现?还有就是,以前的ItemCreated事件是不是跟现在的RowCreated事件一样? 展开
3个回答
展开全部
双击GridView的OnRowDataBound事御乎件;
在后镇孝悉台的GridView1_RowDataBound()方法添加代码,最后代码如下所示:
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
//如果是绑定数据行
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 + "\"吗?')");
}
}
}
在后镇孝悉台的GridView1_RowDataBound()方法添加代码,最后代码如下所示:
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
//如果是绑定数据行
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 + "\"吗?')");
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
如果前衡你用的TemplateField为什么不直接在前面慧慧做写OnClientClick="return confirm('是否确碧迟认删除?')"
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
代物游肢码给你:
在Row数据绑定事件里面实现:罩世
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
LinkButton db = (LinkButton)e.Row.Cells[0].Controls[0];
db.OnClientClick = string.Format("return confirm(是磨衡否确认删除?');",
}
}
在Row数据绑定事件里面实现:罩世
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
LinkButton db = (LinkButton)e.Row.Cells[0].Controls[0];
db.OnClientClick = string.Format("return confirm(是磨衡否确认删除?');",
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询