摘要: 优点:减轻服务器的负担,按需取数据,最大程度的减少冗余请求局部刷新页面,减少用户心理和实际的等待时间,带来更好的用户体验基于xml标准化,并被广泛支持,不需安装插件等进一步促进页面和数据的分离缺点:AJAX大量的使用了javascript和ajax引擎,这些取决于浏览器的支持.在编写的时候考虑对浏览 阅读全文
posted @ 2016-05-24 20:46 尘梦 阅读(2601) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication2 { public delegate void del(); class Program { static void Main... 阅读全文
posted @ 2016-05-24 11:20 尘梦 阅读(529) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Wind... 阅读全文
posted @ 2016-05-24 11:08 尘梦 阅读(150) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication2 { class Program { public delegate int ceshi(T o1, T o2); s... 阅读全文
posted @ 2016-05-24 10:14 尘梦 阅读(125) 评论(0) 推荐(0) 编辑
摘要: public delegate int ceshi(object o1, object o2); static void Main(string[] args) { string[] a = { "abCdeg", "ssxAf" }; object [] b = { 2, 9, 5, 6 }; ... 阅读全文
posted @ 2016-05-24 09:11 尘梦 阅读(177) 评论(0) 推荐(0) 编辑