上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页
摘要: 一、编码规则 Base64编码的思想是是采用64个基本的ASCII码字符对数据进行重新编码。它将需要编码的数据拆分成字节数组。以3个字节为一组。按顺序排列24位数据,再把这24位数据分成4组,即每组6位。再在每组的的最高位前补两个0凑足一个字节。这样就把一个3字节为一组的数据重新编码成了4个字节。当所要编码的数据的字节数不是3的整倍数,也就是说在分组时最后一组不够3个字节。这时在最后一... 阅读全文
posted @ 2008-09-03 04:23 睿达团队 阅读(467) 评论(0) 推荐(0) 编辑
摘要: net use ipipc$ " " /user:" " 建立IPC空链接 net use ipipc$ "密码" /user:"用户名" 建立IPC非空链接 net use h: ipc$ "密码" /user:"用户名" 直接登陆后映射对方C:到本地为H: net use h: ipc$ 登陆后映射对方C:到本地为H: net use ipipc$ /del 删除IPC链接 net ... 阅读全文
posted @ 2008-09-03 03:53 睿达团队 阅读(1186) 评论(0) 推荐(0) 编辑
摘要: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1Public Function ReadTable(ByVal TableName,ByVal Condition,ByVal GetFieldNames) 2 On Error Resum... 阅读全文
posted @ 2008-09-03 02:21 睿达团队 阅读(249) 评论(0) 推荐(0) 编辑
摘要: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1 0 Then 27 Response.Write("数据库服务器端连接错误,请与网站管理员联系。") 28 'Response.Write("错误信息:" & Err.Descript... 阅读全文
posted @ 2008-09-03 02:18 睿达团队 阅读(746) 评论(0) 推荐(0) 编辑
摘要: Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->接口说明: getDBAccessTime:获取数据库访问次数 beginTrans:开始一个事务 commitTrans:提交一个事务 executeProc:执行存储过程 execute... 阅读全文
posted @ 2008-09-03 02:16 睿达团队 阅读(252) 评论(0) 推荐(0) 编辑
摘要: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 12、查询分页---一般的,不用存储过程 2 3mypage=request.form("currpage")'得到需要显示第几页 4'mypage为空则说明此页是第一次加载 5if ... 阅读全文
posted @ 2008-09-03 02:14 睿达团队 阅读(260) 评论(0) 推荐(0) 编辑
摘要: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 10 then 81 vConditions=" where "&Values 82 else 83 vConditions=" where 1=1 " 84 en... 阅读全文
posted @ 2008-09-03 02:12 睿达团队 阅读(1014) 评论(0) 推荐(0) 编辑
摘要: XMLHelper类 完整代码 Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1"" then 31 filename_=filename 32 end if 33 ... 阅读全文
posted @ 2008-09-03 01:29 睿达团队 阅读(469) 评论(0) 推荐(0) 编辑
摘要: 我们在进行Web开发时经常会用到Session,用它去标识不同的会话,那么涉及到跨站点的时候如何实现Session共享呢? 通常的解决方案有:使用数据库、使用Cookies做中间桥等等。 下面介绍一种基于ASP.NET 2.0的,通过序列化和反序列化机制实现的一种解决方案。 首先看一下通常的服务器集群的网络拓扑结构: 利用序列化机制实现Session共享的原理: 1、Web Ser... 阅读全文
posted @ 2008-09-02 15:12 睿达团队 阅读(833) 评论(0) 推荐(0) 编辑
摘要: 如何在传统 ASP 和 ASP.NET 之间共享会话状态 发布日期 : 4/1/2004 | 更新日期 : 4/1/2004 Billy Yuen Microsoft Corporation 2003 年 2 月 适用于: Microsoft ASP.NET 摘要:讨论如何利用 Microsoft .NET 框架类和 .NET 框架的序列化特性,以便在传统 ASP 和 Microsoft... 阅读全文
posted @ 2008-09-02 15:05 睿达团队 阅读(121) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页