对于刚学的来说 跳转到另一个页面修改是比较简单的方案,
首先
设置Repeater操作事件
OnItemCommand="rep_Info_ItemCommand"
设置事件名和编号
OnClientClick="return confirm('你确认要删除此类别和此类别下的信息吗?')">删除
protected void rep_Info_ItemCommand(object source, RepeaterCommandEventArgs e)
{
if (e.CommandName != "delete" || e.CommandArgument == null || !Common.PageValidate.IsNumber(e.CommandArgument.ToString())) return;
if (!new BLL.Products().Delete(int.Parse(e.CommandArgument.ToString()))|| !new BLL.ProductClass().Delete(int.Parse(e.CommandArgument.ToString())))
Common.MessageBox.Show(this, "删除失败!");
else
Server.Transfer(Request.RawUrl, false);
}