实现删除ajax请求,在一般处理程序中实现删除代码,客户端实现刷新数据代码

如何使用ajax实现删除方法,并实现无刷新删除数据,具体方法如下:

1、首先,在我们写三层架构DAL层时,在相应的表类中书写删除方法(根据Id进行删除,具体方法参考下图):

/// <summary>
/// 删除
/// </summary>
/// <param name="id"></param>
/// <returns></returns>
public static int Delete(int id)
{
    var sql = "delete from Product where Id=" + id;
    return SqlHelper.NonQuery(sql);
}

2、其次,在UI层中添加一个一般处理程序,并在所添加的一般处理程序中去实现我们的删除代码(具体方法参考下图):

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Security;
using BLL;

namespace _3C数码商城
{
    /// <summary>
    /// HandDelete 的摘要说明
    /// </summary>
    public class HandDelete : IHttpHandler
    {

        public void ProcessRequest(HttpContext context)
        {
            //获取
            var Id = Convert.ToInt32(context.Request.QueryString["Id"]);
            //执行删除
            string delete = ProductManage.Delete(Id).ToString();

            context.Response.ContentType = "text/plain";
            context.Response.Write(delete);
        }

        public bool IsReusable
        {
            get
            {
                return false;
            }
        }
    }
}

注意:在添加好一般处理程序后 不要忘了引用BLL层,因为我们要通过BLL层调用删除方法。

3、设置一个超链接删除按钮

<a data-id='<%# Eval("Id")%>' href='#' class="pDelete">删除</a>

4、引用项目自带的jQuery文件

<script src="Scripts/jquery-1.4.1.js" type="text/javascript"></script>

5、添加jQuery脚本,给删除按钮添加事件,处理data 实现无刷新删除数据

<script type="text/javascript">
        $(function () {
            $(".pDelete").click(function () {
                var $this = $(this); //获取删除按钮
                var id = $this.attr("data-id"); //获取删除按钮绑定的主键
                $.post("HandDelete.ashx?id=" + id, function (data) {
                    if (data == 1) {
                        $this.closest("tr").remove();
                    }
                })
            })
        })
</script>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值