批量删除跟单删
Posted menbe
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了批量删除跟单删相关的知识,希望对你有一定的参考价值。
/// <summary>
/// 删除
/// </summary>
/// <param name="id"></param>
/// <returns></returns>
public int DeleteId(int id)
{
int i = bll.Delete(id);
if (i > 0)
{
Response.Write("<script>alert(‘删除成功!‘);location.href=‘/Index/Index‘</script>");
}
else
{
Response.Write("<script>alert(‘删除失败!‘);location.href=‘/Index/Index‘</script>");
}
return i;
}
/// <summary>
/// 批量删除
/// </summary>
/// <param name="id"></param>
/// <returns></returns>
public int DeleteIds(string id)
{
if (bll.DeleteIds(id) > 0)
{
return 1;
}
else
{
return 0;
}
}
以上是关于批量删除跟单删的主要内容,如果未能解决你的问题,请参考以下文章