学海无涯

记录我的程序人生...

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::

随笔分类 -  其他的

水晶报表、active directory、sharepoint 等
摘要:"^\\d+$" //非负整数(正整数 + 0) "^[0-9]*[1-9][0-9]*$" //正整数 "^((-\\d+)|(0+))$" //非正整数(负整数 + 0) "^-[0-9]*[1-9][0-9]*$" //负整数 "^-?\\d+$" //整数 "^\\d+(\\.\\d+)?$" //非负浮点数(正浮点数 + 0) "^(([0-9]+\\.[0-9]*[1... 阅读全文
posted @ 2005-11-15 09:02 josson 阅读(226) 评论(0) 推荐(0)

摘要:源文:http://www.ccw.com.cn/htm/app/aprog/01_7_31_4.asp 一、正则表达式基础知识 我们先从简单的开始。假设你要搜索一个包含字符“cat”的字符串,搜索用的正则表达式就是“cat”。如果搜索对大小写不敏感,单词“catalog”、“Catherine”、“sophisticated”都可以匹配。也就是说: 1.... 阅读全文
posted @ 2005-09-07 22:35 josson 阅读(303) 评论(0) 推荐(0)

摘要:流量(AWStats)分析系统安装说明Step 1、下载软件awstats.exe http://awstats.sourceforge.net/Download ActivePerl MSI http://www.activestate.com/ (需要Perl支持)Step 2、安装 ActivePerl安装ActivePerl 到你的服务器上. 默认安装在C:\Perl .Step3、... 阅读全文
posted @ 2005-06-02 16:23 josson 阅读(758) 评论(0) 推荐(0)

摘要:http://www.c-sharpcorner.com/DirectoryServices.asphttp://www.dotnet247.com/247reference/System/DirectoryServices/DirectoryEntry.aspxhttp://blog.joycode.com/liuhuimiao/posts/20946.aspx 阅读全文
posted @ 2004-09-16 09:52 josson 阅读(502) 评论(0) 推荐(0)

摘要:using System; using System.DirectoryServices; namespace SystemFrameworks.Helper { /// /// 活动目录辅助类。封装一系列活动目录操作相关的方法。 /// public sealed class ADHelper { /// ... 阅读全文
posted @ 2004-09-16 09:44 josson 阅读(1898) 评论(1) 推荐(0)

摘要:打开SPS虚拟站点的根目录下的web.config文件,找到下面这行: 将其修改为: 提示:WebPart在默认的安全等级下是无法访问SharePoint Object Model的(即无法通过WSS SDK来访问SPS站点中的列表、文档库、文档、用户等信息、AD),为了让我们的WebPart能正常工作,我们可以:★ 为这个WebPart创建一个单独的Policy文件★ 将WebPart的(.d... 阅读全文
posted @ 2004-09-09 15:32 josson 阅读(764) 评论(1) 推荐(0)

摘要:http://www.sdgn.nl/Default.asp?A1PID=57PDGUH&A1SID=229854200434&URL=154106PDWL Inleiding Web Part development Met Microsoft SharePoint Portal Server kun je portal-oplossingen ontwikkelen waarin kennis... 阅读全文
posted @ 2004-09-09 14:10 josson 阅读(1787) 评论(2) 推荐(0)

摘要:SharePoint主页:http://www.microsoft.com/sharepoint/SharePoint Portal Server主页:http://www.microsoft.com/office/sharepoint/prodinfo/default.mspx SharePoint Service和SharePoint Portal Server有什么区别:http://www... 阅读全文
posted @ 2004-09-09 14:04 josson 阅读(1756) 评论(1) 推荐(0)

摘要://增加用户string dom ="LDAP://intdomain.com/CN=Users,DC=intdomain,DC=com"; System.DirectoryServices.DirectoryEntry entry1 = new System.DirectoryServices.DirectoryEntry(dom); DirectoryEntries myEntries = e... 阅读全文
posted @ 2004-09-09 14:02 josson 阅读(787) 评论(0) 推荐(0)

摘要:(转)http://msdn.microsoft.com/library/default.asp?url=/library/en-us/adsi/adsi/iadsuser.aspTo bind to a domain user through a WinNT provider, use the domain name as part of the ADsPath, as shown in the... 阅读全文
posted @ 2004-09-09 13:57 josson 阅读(784) 评论(0) 推荐(0)