摘要: 1 /* 2 FTPFactory.cs 3 Better view with tab space=4 4 Written by Jaimon Mathew (jaimonmathew@rediffmail.com) 5 Rolander,Dan (Dan.Rolander@marriott.com) has modified the 6 download 7 method to cope with file name with path information. He also 8 provided 9 ... 阅读全文
posted @ 2014-04-09 13:59 MyFirstHome 阅读(2642) 评论(1) 推荐(0) 编辑
摘要: 可以在客户端对密码进行简单的64位加密,服务端对应使用64位解密即可。 1 /** 2 * 3 * Base64 encode / decode 4 * 5 * @author 6 7 * @date 8 9 * @email 10 */ 11 12 function Base64() { 13 14 // private property 15 _keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="; 16 17 /... 阅读全文
posted @ 2014-04-09 13:10 MyFirstHome 阅读(333) 评论(0) 推荐(0) 编辑
摘要: 首先需要引用jquery-1.7.2.js.页面下拉框有对应的数据,此下拉框的查询将不与服务器交互。本地下拉框查询。暂不支持通过键盘上下按键和enter键控制 1 // JavaScript Document 2 //使用方法:IniteMyInputSelect('id');IniteMyInputSelect(['id1','id2','id3']); 3 //id不需要加‘#’,且必须是id 4 function IniteMyInputSelect(k) { 5 //如果是数组 6 if ((typeof (k) == & 阅读全文
posted @ 2014-04-09 13:04 MyFirstHome 阅读(398) 评论(0) 推荐(0) 编辑