05 2009 档案

摘要:XMLHttpRequest对象XMLHttpRequest提供客户端同http服务器通讯的协议Example下面的代码是在JScript中创建一个XMLHTTP对象并从服务器请求一个XML文档。服务器返回XML文档并显示。var xmlHttpReq = new ActiveXObject("MSXML2.XMLHTTP.3.0");xmlHttpReq.open("GET", "http://... 阅读全文
posted @ 2009-05-20 21:45 琴鸟 阅读(1015) 评论(5) 推荐(0)
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace alltest{ class Program { static void Main(string[] args) { object ob = 5; int obint = Convert.ToInt32(ob); i... 阅读全文
posted @ 2009-05-13 09:40 琴鸟