05 2007 档案

摘要:产生原因主要有2个原因1 xtmlhttp 返回的数据默认的字符编码是utf-8,如果前台页面是gb2312或者其它编码数据就会产生乱码2 post方法提交数据默认的字符编码是utf-8,如果后台是gb2312或其他编码数据就会产生乱码解决方法进一步整理中推荐方法,前台后台都用utf-8编码,这样可以省不少麻烦,从根本上解决了乱码问题.优点是效率高,而且符合目前的形式,utf-8编码本身就是一种比... 阅读全文
posted @ 2007-05-31 16:03 PointNet 阅读(3677) 评论(2) 推荐(0) 编辑
摘要:在网上获得了如下资料: 请输入要运行的程序:确定重新输入 记事本 画图板 计算器 cmd Regedit Msconfig WINAMP IE .. %windir% %temp% WINAMP 该段代码打开如:word,excel,notepad,画板等都能打开,但是自已写的应用程序为什么打不开呢?报错说:系统找不到指定的路径。 想要IE或word点击超链接打开本地... 阅读全文
posted @ 2007-05-29 15:16 PointNet 阅读(12644) 评论(0) 推荐(0) 编辑
摘要:/**//* MD5 Message-Digest Algorithm - JavaScriptMODIFICATION HISTORY:1.0 16-Feb-2001 - Phil Fresle (sales@frez.co.uk) - Initial Version (VB/ASP code)1.0 21-Feb-2001 - Enrico Mosanghini (erik504@yahoo.... 阅读全文
posted @ 2007-05-29 11:28 PointNet 阅读(467) 评论(0) 推荐(0) 编辑
摘要:The membership API is awesome. No doubt about that. But I wish it had a more obvious in-built support for SSO. The only authenticate method takes in a username and password, there is no support for a ... 阅读全文
posted @ 2007-05-25 19:08 PointNet 阅读(744) 评论(0) 推荐(1) 编辑
摘要:getElementById getElementsByName getElementsByTagName 大概介绍 getElementById ,getElementsByName ,getElementsByTagName 后两个是得到集合,byid只是得到单个对象 getElementById 的用法 举个例子: 网页陶吧 同一页面内的引用方法: 1、... 阅读全文
posted @ 2007-05-24 11:26 PointNet 阅读(927) 评论(0) 推荐(0) 编辑
摘要:换行回车 阅读全文
posted @ 2007-05-22 19:04 PointNet 阅读(2465) 评论(1) 推荐(0) 编辑
摘要:一、MSMQ简介 MSMQ(微软消息队列)是Windows操作系统中消息应用程序的基础,是用于创建分布式、松散连接的消息通讯应用程序的开发工具。消息队列 和电子邮件有着很多相似处,他们都包含多个属性,用于保存消息,消息类型中都指出发送者和接收者的地址;然而他们的用处却有着很大的 区别:消息队列的发送者和接收者是应用程序,而电子邮件的发送者和接收者通常是人。如同电子邮件一样,消息队列的发送和接收也... 阅读全文
posted @ 2007-05-18 10:00 PointNet 阅读(10667) 评论(17) 推荐(1) 编辑
摘要:用函数 ------------------------Create FUNCTION DecToBin(@Dec Int)RETURNS VARCHAR(16)ASbegin declare @BinStr as varchar(20) declare @Mod2 as int declare @Div2 as int set @Div2 = @Dec / 2 set @Mod2 ... 阅读全文
posted @ 2007-05-18 09:58 PointNet 阅读(2331) 评论(0) 推荐(0) 编辑