上一页 1 ··· 8 9 10 11 12
  2009年9月12日
摘要: using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.We... 阅读全文
posted @ 2009-09-12 18:08 天蓝- 阅读(349) 评论(0) 推荐(0) 编辑
摘要: System.Data.OracleClient 需要 Oracle 客户端软件 8.1.7 或更高版本: 这个问题首先确认是否安装了Oracle 客户端,如果有的话,就是Oracle 客户端安装目录权限设置问题,导致出现这个错误的,跟目录下,添加这个配置权限就可以了,系统重新启动下. 阅读全文
posted @ 2009-09-12 18:06 天蓝- 阅读(403) 评论(0) 推荐(0) 编辑
摘要: 本地测试的时候,没有出现这个错误,到了服务器就显示"未知的服务器标记",最后检查了下,发现web.config中少了<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf38... 阅读全文
posted @ 2009-09-12 18:03 天蓝- 阅读(357) 评论(0) 推荐(0) 编辑
摘要: <asp:ScriptManager ID="ScriptManager1" EnablePartialRendering="true" runat="server" />将ScriptManager 中的 EnablePartialRendering="false" 就会显示错误信息 阅读全文
posted @ 2009-09-12 18:00 天蓝- 阅读(197) 评论(0) 推荐(0) 编辑
摘要: <div id="divfy" style="z-index: 200; width: 100%; position: absolute; top: 0px; text-align: center; padding-top: 2px;"> <script type="text/javascript" language="javascript"> function hide(... 阅读全文
posted @ 2009-09-12 17:59 天蓝- 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 方法1:function getBytesCount(str){ var bytesCount = 0; if (str != null) { for (var i = 0; i < str.length; i++) { var c = str.charAt(i); if (/^[\u0000-\u00ff]$/.test(c)) { bytesCount += 1; } else { by... 阅读全文
posted @ 2009-09-12 17:56 天蓝- 阅读(225) 评论(0) 推荐(0) 编辑
摘要: IIS安装时,安装程序无法复制一个或多个文件。特定错误码是0x4b8故障现象 安装IIS的时候一直提示如下错误,IIS无法正常安装。提示:安装程序无法复制一个或多个文件。特定错误码是 0x4b8。按“确定”以继续;或者按“取消”,停止安装并且再试一次。如果继续,组件可能无法正常运行。解决方案 (1) 开始 > 运行 > 输入 CMD &g... 阅读全文
posted @ 2009-09-12 17:45 天蓝- 阅读(265) 评论(0) 推荐(0) 编辑
摘要: //表单对象 function GetObject(Name) { var inputlist=document.all.tags('input'); var i=0; for(i=0;i<inputlist.length;i++) { var input=inputlist[i]; if(input.id.indexOf(Name) !=-1) { return input; } } re... 阅读全文
posted @ 2009-09-12 17:41 天蓝- 阅读(276) 评论(0) 推荐(0) 编辑
摘要: Web.config配置<configuration> <appSettings/> <connectionStrings/> <system.web> <pages pageBaseType="StarTech.Adapter.StarTechPage"></pages> </system.web></co... 阅读全文
posted @ 2009-09-12 17:31 天蓝- 阅读(305) 评论(1) 推荐(0) 编辑
摘要: C#里的一些加密解密标准函数示例——DES,SHA1,RSA最近收到了很多朋友的来信说希望提供DES的C#代码,但是我个人认为,.NET 提供了很多标准函数,没有必要自己写,所以我也只发布了C++的代码,如果大家一定要熟悉加密过程的话,也可以自己动手实现整个过程,这个可以参考我博客里的DES 算法介绍,和yxyDES2 Class的代码,代码注释相当的清楚。  .NET 提... 阅读全文
posted @ 2009-09-12 17:28 天蓝- 阅读(341) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12