上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页
摘要: GET一般用于获取/查询资源信息,而POST一般用于更新资源信息。1.GET用于获取信息,而且是安全(对信息源而言)和幂等的。 POST可能更改服务器上资源内容,如post更新博客评论。2.服务端获取GET请求参数用Request.QueryString。 获取POST请求参数用Request.Form。3.Get 方法通过 URL 请求来传递用户的数据,如:http://localhost:7045/Default.aspx?txtname=rew&Button1=Button,用户可以看到这个过程。 Post方法将表单内字段与各属性值放在html Header中交由action所指 阅读全文
posted @ 2013-08-05 15:28 hometown 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 客户端: 服务端: public partial class DetailForm : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { string str = Request.QueryString["title"]; if (str != null && str != "") { Res... 阅读全文
posted @ 2013-08-04 22:01 hometown 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 网页上所有元素都有一个style对象,借此可以获得网页上任何事物的高度和宽度。document.getElementById("rockImg").style.height浏览器大小改变触发onresize事件。alert(typeof document.cookie); //string //写Cookie function writeCookie(name, value, days) { var expires = ""; if (days) { var date = new Date(); ... 阅读全文
posted @ 2013-08-04 10:24 hometown 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 原型式继承:对象的构造函数可以从其他对象中继承方法,他创建出一个原型对象后,所有其他的新对象都可以基于这个原型对象来构建。这种继承方式难于掌握,主要是由于原型本身并不会从其他原型或构造函数中继承属性,属性都是从实际对象继承来的。 阅读全文
posted @ 2013-08-01 18:06 hometown 阅读(186) 评论(0) 推荐(0) 编辑
摘要: Lookup非常类似于Dictionary,但是把键映射在一个值集上。必须调用ToLookup方法创建Lookup对象。Lookup对象是不可变的,无法向对象添加,移除元素。public class User { public string Address; public string Name; public int Age; } class Program { static void Main(string[] args) { List users = new List {... 阅读全文
posted @ 2013-07-29 17:41 hometown 阅读(440) 评论(0) 推荐(0) 编辑
摘要: 字典(散列表):允许按照某个键来访问元素,能根据键快速查找元素,也可以自由添加,删除元素。比较像List类,但没有list向后移动元素的性能开销。.net中最主要的字典类是Dictionary。字典中的键:用作字典中键的类型必须重写Object类中的GetHashCode()方法。调用GetHashCode()方法主要是为了获得元素的位置。键还必须实现IEquatable.Equals方法或重写Object类的Equals()方法。因为不同的键代码可能返回相同的散列代码,所以使用equals方法比较键。字典比较两个键是否相等,调用A.Equals(B)方法,如果A.Equals(B)返回tru 阅读全文
posted @ 2013-07-29 15:08 hometown 阅读(348) 评论(0) 推荐(0) 编辑
摘要: 有序列表:SortedList,基于键对内容进行排序。对实例对象增加项时,用Add()方法添加,当key存在,则程序报异常;另一种添加项的方法是基于索引器,如果索引器存在,则更新value。 var books = new SortedList(); books.Add("001", "张三与李四"); books.Add("002", "十点钟开始"); books.Add("004", "扒马褂"); books["003"] = "宇宙牌香 阅读全文
posted @ 2013-07-23 16:29 hometown 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 栈:实现了与队列一样的接口。是一种后进先出的集合结构。public class Stack : IEnumerable, ICollection, IEnumerable class Program { static void Main(string[] args) { var chars = new Stack(); chars.Push('A'); chars.Push('B'); chars.Push('C'); foreach (char it... 阅读全文
posted @ 2013-07-22 18:02 hometown 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 队列:先进先出的集合结构。类似于List,容量也是根据需要成倍的增加。public class Queue : IEnumerable, ICollection, IEnumerable//Document文档类;DocumetManger文档控制类,用于添加文档,获取移除文档;ProcessDocuments类用于在单独的一个线程中处理队列中的文档。using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;namespace Abstract 阅读全文
posted @ 2013-07-22 16:45 hometown 阅读(375) 评论(0) 推荐(0) 编辑
摘要: .net framework为动态列表提供了泛型类List.继承了6个接口,其定义如下:public class List : IList, ICollection, IEnumerable, IList, ICollection, IEnumerable List list = new List(8); //创建列表 Console.WriteLine(list.Count.ToString());//列表元素数量 Console.WriteLine(list.Capacity.ToString());//列表容量 list.TrimExcess();// 去除不需要的容量,当数量达到容量9 阅读全文
posted @ 2013-07-22 14:22 hometown 阅读(219) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页