William-Ren

导航

2007年12月25日 #

C#下的IP2Long

摘要: C#下的IP2Long public ulong iptolong(string ip) { string[] cip = ip.Trim().Split('.'); string[] aip = new string[4]; cip.CopyTo(aip,0); if (cip.Length < 3) { for (int i = 3;i>cip.Length; i--) { aip... 阅读全文

posted @ 2007-12-25 14:43 William-ren 阅读(544) 评论(0) 推荐(0) 编辑

安装VS2005错误,未通过数字签名检查.

摘要: 今天在为自己的VS2005中加装一个VB.net,安装到一半突然弹出错误,说我的一个MSP文件,未通过数字签名检查,找了半天终于找解决方法.症状当您尝试运行 Microsoft Windows Server 2003 或 Microsoft Windows XP, 计算机上安装大 MicrosoftWindowsInstaller .msi) 程序包或大型 MicrosoftWindowsInst... 阅读全文

posted @ 2007-12-25 14:42 William-ren 阅读(894) 评论(2) 推荐(0) 编辑

DNN FORUM搜索问题

摘要: FORUM搜索老是报错:如果指定了 SELECT DISTINCT,那么 ORDER BY 子句中的项就必须出现在选择列表中 解决方法如下:找到存储过程Forum_SearchGetResults ,寻找 @Filter 如下:Filter + ' GROUP BY P.ThreadID , P.CreatedDate ORDER BY P.CreatedDate DESC '改成:@Filter... 阅读全文

posted @ 2007-12-25 14:41 William-ren 阅读(213) 评论(0) 推荐(0) 编辑

log4net简易配置

摘要: WEB.Config 在<configuration>加入代码:<configSections> <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"/> </configSections> <log4net debug... 阅读全文

posted @ 2007-12-25 13:49 William-ren 阅读(184) 评论(0) 推荐(0) 编辑