博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ajax:动态更新Web页面
阅读量:6259 次
发布时间:2019-06-22

本文共 2237 字,大约阅读时间需要 7 分钟。

            

Employee List

Name: Title: Department:

后台代码如下:

[WebMethod]        public void EmployeeList()        {            string action = Context.Request.QueryString["a"];            if (action.Equals("add"))            {                addEmployee(Context.Request, Context.Response);            }            else if (action.Equals("delete"))            {                deleteEmployee(Context.Request, Context.Response);            }        }        private void deleteEmployee(HttpRequest httpRequest, HttpResponse httpResponse)        {            string id = httpRequest.QueryString["id"];            StringBuilder xml = new StringBuilder("
"); xml.Append("
1
"); xml.Append("
"); sendResponse(httpResponse, xml.ToString()); } private void addEmployee(HttpRequest httpRequest, HttpResponse httpResponse) { string uniqueID = storeEmployee(); StringBuilder xml = new StringBuilder("
"); xml.Append(uniqueID); xml.Append("
"); xml.Append("
1
");//书中没有这行代码,请注意 xml.Append("
"); sendResponse(httpResponse, xml.ToString()); } private void addEmployee() { } private void sendResponse(HttpResponse httpResponse, string responseText) { httpResponse.ContentType = "text/xml"; httpResponse.Write(responseText); } private string storeEmployee() { string uniqueID = ""; Random r = new Random(); for (int i = 0; i < 8; i++) { uniqueID += r.Next(9); } return uniqueID; }

运行效果如下:

点击删除按钮后:

转载于:https://www.cnblogs.com/lufangtao/archive/2012/10/10/2717836.html

你可能感兴趣的文章
TiDB at 丰巢:尝鲜分布式数据库
查看>>
三篇文章了解 TiDB 技术内幕 —— 谈调度
查看>>
Next.js踩坑入门系列(六) —— 再次重构目录
查看>>
1. Context - React跨组件访问数据的利器
查看>>
Git常用操作、提交到GitHub等
查看>>
Android基础 四大组件之广播(Broadcast)
查看>>
SQL优化器原理 - 查询优化器综述
查看>>
TODO list小工具,给自己一个交代
查看>>
iOS Notification 与多线程
查看>>
NLP系列学习:概率图模型简述
查看>>
数组分页,返回数据,你用过吗?
查看>>
JEESZ-kafka消息服务平台实现
查看>>
(四)构建dubbo分布式平台-maven代码结构
查看>>
解读Node核心模块Stream系列一(Writable和pipe)
查看>>
自我绘制三
查看>>
区块链开发、以太坊开发的技术资料资源汇总
查看>>
CSS 技巧篇(五):理解CSS优先度
查看>>
使用vue解决复杂逻辑
查看>>
删除链表中等于给定值 val 的所有节点。
查看>>
node --- package.json 文件配置
查看>>