前台代码:

 <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Products.aspx.cs" Inherits="_0726Test.Product.Products" %>

 <!DOCTYPE html>

 <html xmlns="http://www.w3.org/1999/xhtml">
 <head runat="server">
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
     <title></title>
     <script src="../js/jquery.js"></script>
    <script type="text/javascript">
        $(function () {
            //1.加载表格中的信息
            loadComments();
            //2.给按钮添加单击事件
            $('#btnSend').click(function () {
                var post_data = $('#form1').serializeArray();//获取序列化表单元素
                 //将请求提交到一般处理程序                    $.post("InsertProduct.ashx", post_data, function (_datetext) {
                    if (_datetext == 1) {
                        alert("添加成功");
                        loadComments();
                    }
                })
            })
        })             //页面加载事件
        function loadComments() {
            $.getJSON('GetAllProduct.ashx?id=' + Math.random(), null, function (_dataJSON) {
              //获取tbody标签                   var tbodyDate = $('#tbodyDate');
                tbodyDate.empty();
             //遍历JSON元素,添加到到Tbody                   for (var i = 0; i < _dataJSON.length; i++) {
                    tbodyDate.append
                      ($('<tr><td>' + _dataJSON[i].Id + '</td>' +
                       '<td>' + _dataJSON[i].Name + '</td>'+
                       '<td>'+_dataJSON[i].Price+'</td>'+
                       '<td>'+_dataJSON[i].Sales+'</td></tr>'));
                }
            })
        }
    </script>
      </head>
     <body>
     <form id="form1" runat="server">
     <table border="1" cellspcing="2"  cellpadding="1">
         <tr>
             <td>
                名称:
             </td>
             <td>
                 <input type="text" name="txtPname" />
             </td>
         </tr>
           <tr>
             <td>
                价格:
             </td>
             <td>
                 <input type="text" name="txtPrice" />
             </td>
         </tr>
         <tr>
             <td>
                数量:
             </td>
             <td>
                 <input type="text" name="txtSales" />
             </td>
         </tr>
         <tr>
           <td>
             </td>
             <td>
                 <input type="button" id="btnSend" value="提交" />
             </td>
         </tr>
     </table>
     </form>
         <p>--------------------商品列表----------------------</p>
         <table border="1" cellspacing="2" cellpadding="1" >
             <thead>
                <tr>
                     <th>
                        ID
                    </th>
                    <th>
                        名称
                    </th>

                      <th>
                        价格
                    </th>
                    <th>
                        数量
                    </th>
                      </tr>
             </thead>
             <tbody id ="tbodyDate">

             </tbody>
         </table>
 </body>
 </html>

一般处理程序代码:

GetAllProduct.ashx(加载数据到页面)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data;
using System.Data.SqlClient;
using System.Web.Script.Serialization;

namespace _0726Test.Product
{
    /// <summary>
    /// GetAllProduct 的摘要说明
    /// </summary>
    public class GetAllProduct : IHttpHandler
    {

        public void ProcessRequest(HttpContext context)
        {
            context.Response.ContentType = "text/plain";
            string str = @"Data Source=QH-20160731XBEK\SQLSERVER2008;Initial Catalog=MvcTest;User ID=sa;Password=1234";
            SqlConnection conn = new SqlConnection(str);
            conn.Open();
            string selname = "SELECT * FROM  MyProduct";
            List<MyProduct> products = new List<MyProduct>();
            SqlCommand sc = new SqlCommand(selname, conn);
            SqlDataReader dr = sc.ExecuteReader();

            while (dr.Read())
            {
                MyProduct product = new MyProduct();
                product.Id = Convert.ToInt32(dr["Id"]);
                product.Name = dr["ProductName"].ToString();
                product.Price = Convert.ToDouble(dr["Price"]);
                product.Sales = Convert.ToInt32(dr["Sales"]);
                products.Add(product);

            }
            dr.Close();
           //把list集合转为JSON类型            JavaScriptSerializer jss = new JavaScriptSerializer();
            string jsondata = jss.Serialize(products);
            context.Response.Clear();
            context.Response.Write(jsondata);
            context.Response.End();
        }

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

InsertProduct.ashx(添加数据)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data;
using System.Data.SqlClient;

namespace _0726Test.Product
{
    /// <summary>
    /// InsertProduct 的摘要说明
    /// </summary>
    public class InsertProduct : IHttpHandler
    {

        public void ProcessRequest(HttpContext context)
        {
            context.Response.ContentType = "text/plain";
            MyProduct product = new MyProduct();
            product.Name = context.Request.Form["txtPname"];
            product.Price = Convert.ToDouble(context.Request.Form["txtPrice"]);
            product.Sales = Convert.ToInt32(context.Request.Form["txtSales"]);
            string str = @"Data Source=QH-20160731XBEK\SQLSERVER2008;Initial Catalog=MvcTest;User ID=sa;Password=1234";
            SqlConnection conn = new SqlConnection(str);
            conn.Open();
            string insertSQL = "INSERT INTO MyProduct VALUES(@name,@price,@sales)";
            SqlCommand sc = new SqlCommand(insertSQL, conn);
            sc.CommandType = CommandType.Text;
            SqlParameter p1 = new SqlParameter("@name", product.Name);
            SqlParameter p2 = new SqlParameter("@price", product.Price);
            SqlParameter p3 = new SqlParameter("@sales", product.Sales);
            sc.Parameters.Add(p1);
            sc.Parameters.Add(p2);
            sc.Parameters.Add(p3);
            context.Response.Clear();
            int result = sc.ExecuteNonQuery();
            )
            {
                context.Response.Write(");
            }
            else
            {
                context.Response.Write(");
            }
            context.Response.End();
            conn.Close();
        }

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

Ajax实现页面动态加载,添加数据的更多相关文章

  1. layui中,同一个页面动态加载table数据表格

    效果图: 前端代码: <div class="layui-fluid" id="record-user" hidden="hidden" ...

  2. js/jquery控制页面动态加载数据 滑动滚动条自动加载事件--转他人的

    js/jquery控制页面动态加载数据 滑动滚动条自动加载事件--转他人的 相信很多人都见过瀑布流图片布局,那些图片是动态加载出来的,效果很好,对服务器的压力相对来说也小了很多 有手机的相信都见过这样 ...

  3. geotrellis使用(二十三)动态加载时间序列数据

    目录 前言 实现方法 总结 一.前言        今天要介绍的绝对是华丽的干货.比如我们从互联网上下载到了一系列(每天或者月平均等)的MODIS数据,我们怎么能够对比同一区域不同时间的数据情况,采用 ...

  4. Echarts使用及动态加载图表数据

    Echarts使用及动态加载图表数据 官网:http://echarts.baidu.com/ 1.文档 2.实例 名词: 1.统计维度(说明数据) 维度就是统计致力于建立一个基于多方位统计(时间.地 ...

  5. AJAX 动态加载后台数据 绑定select

    <select id="select"> <!--下拉框数据动态加载--> </select> js:(使用jquery) $(document ...

  6. [JS前端开发] js/jquery控制页面动态加载数据 滑动滚动条自动加载事件

    页面滚动动态加载数据,页面下拉自动加载内容 相信很多人都见过瀑布流图片布局,那些图片是动态加载出来的,效果很好,对服务器的压力相对来说也小了很多 有手机的相信都见过这样的效果:进入qq空间,向下拉动空 ...

  7. Echarts动态加载后台数据

    注意:1.用Ajax请求获取后台数据 2.Echarts只能处理Json数据 后台Controller:根据业务需求不同而返回不同数据,我前台要循环遍历Echarts的series进行数据添加,所以后 ...

  8. Echarts使用及动态加载图表数据 折线图X轴数据动态加载

    Echarts简介 echarts,缩写来自Enterprise Charts,商业级数据图表,一个纯JavaScript的图表库,来自百度...我想应该够简洁了 使用Echarts 目前,就官网的文 ...

  9. 使用 Cesium 动态加载 GeoJSON 数据

    前言 需求是这样的,我需要在地图中显示 08 年到现在的地震情况,地震都是发生在具体的时间点的,那么问题就来了,如何实现地震情况按照时间动态渲染而不是一次全部加载出来. 一. 方案分析 这里面牵扯到两 ...

随机推荐

  1. MVC与EasyUI结合增删改查

    构建ASP.NET MVC4+EF5+EasyUI+Unity2.x注入的后台管理系统(9)-MVC与EasyUI结合增删改查   在第八讲中,我们已经做到了怎么样分页.这一讲主要讲增删改查.第六讲的 ...

  2. 基于认证的代理平台搭建配置squid-20130730

    基于认证的代理平台搭建配置squid-20130730 功能:通过squid代理实现 (1)基于用户名密码认证的出口ip路由选择 (2)基于client源ip的出口ip路由选择 (3)基于连接本机ip ...

  3. springMVC3学习(一)--框架搭建

    由于项目需要,学习下springMVC,在此简单记录一下. 如有十万个为什么,暂且忽略,待以后研究. 本人是基于3.1.1版本开发,如遇jar包版本冲突等其他问题,概不负责. 下载地址:上传此zip资 ...

  4. linux下面的解压缩文件的命令

    尝试去好好用linux.新手起步.   这边只会提到我用过的.其他相关的以后我用到了我会补充的.如果有错欢迎指正 注:1.c-创建-create 2.v-复杂输出    3.f-文件-file     ...

  5. Android While 循环导致的资源占用过高进而导致程序崩溃问题

    Timeline: Activity_launch_request time:6562004-14 15:31:25.347: I/dalvikvm(3483): Total arena pages ...

  6. MFC控件(7):Split Button

    VS2008中可以看到MFC有一个叫Split Button的控件,要想看它的效果,瞧下QQ那聊天窗口的"发送", "消息记录"这两个按钮就知道了.实际上就是还 ...

  7. [每日一题] OCP1z0-047 :2013-07-16 主键与唯一索引

    主键包括非空和唯一约束,它会自动创建唯一索引(注:唯一约束也会自动创建唯一索引),测试如下: 1. 创建一个表products gyj@OCM> Create table products( 2 ...

  8. 通告机制Notification

    Obj-c的基本通讯原则是对象间的消息传递,这种情况多出现在两个对象之间.但是如果多个对象共同关注一个对象状态的时候呢,当然可以让发生事件的对象向所有关注他的对象发送消息,但是这并不高效.所以有了通告 ...

  9. Facebook开源的基于SQL的操作系统检测和监控框架:osquery daemon详解

    osqueryd osqueryd(osquery daemon)是可以定期执行SQL查询和记录系统状态改变的驻守程序. osqueryd能够根据配置手机归档查询结果,并产生日志. 同时也可以使用系统 ...

  10. 数据库(MySQL)表基本操作

                                    数据库表基本操作 思前想后,最终还是把博客的名字改成了数据库表基本操作,以前叫SQL语句大全,感觉用"大全"这个名词 ...