Sharepoint
wuhongyao3
这个作者很懒,什么都没留下…
展开
-
sharepoint 实现表单验证
参考的是http://www.cnblogs.com/moss2007/archive/2008/03/12/1102464.html 这篇文章。 但其中有个错误,让我绕了很多路。 晕。 就是有个地方,配置控制中心的config文件 他上边说 “ 在管理中心站点的web.config文件中,只插入节。 内容和上面的相同。同时将该文件下方的注释掉原创 2008-07-28 17:50:00 · 1225 阅读 · 0 评论 -
SharePoint自带WebService(Lists Web Service--AddAttachment Method)
该ws的引用地址是 /_vti_bin/Lists.asmx">http:///_vti_bin/Lists.asmx Dim instance As ListsDim listName As StringDim listItemID As StringDim fileName As StringDim attachment As Byte()Dim returnValue原创 2008-12-17 10:46:00 · 1342 阅读 · 0 评论 -
SharePoint自带WebService(Authentication Web Service)
该Services的作用是用来验证用户的登陆 引用地址 http:///_vti_bin/Authentication.asmx 说下Authentication.Login Method 的使用 Visual Basic (Usage)Dim instance As AuthenticationDim username As StringDim pas原创 2008-12-17 10:38:00 · 885 阅读 · 0 评论 -
在Moss中,使用自己的MembershipProvider.
需求:Moss站点需要Form认证,同时登陆Moss站点时候需要自己的逻辑进行登陆 解决方案:1.将Moss站点先设置成Form认证,这个就不多说了,网上一搜很多的 2.自定义自己的Provider类 我的代码: Imports System.Dat原创 2008-10-22 15:47:00 · 708 阅读 · 0 评论 -
EventHandler开发一
在MOSS中,文档库、列表都支持Event Handler . 过多的介绍我也不会说。 所以看一段代码 介绍一下。新建一个类库项目 using System;using System.Collections.Generic;using System.Linq;using System.Text;using Microsoft.原创 2008-09-23 15:52:00 · 3527 阅读 · 0 评论 -
Feature开发三(Feature文件元素的解释--SDK)
转自 http://www.cnblogs.com/sunmoonfire/articles/1240973.html 如有侵权,请联系我.Feature.xml文件在一个 Feature.xml 文件中, Feature元素定义了其本身,并指定了相关的DLL组件,文件等的位置,或是一些用于支持该Feature的属性。Feature ActivationDependencies转载 2008-09-05 09:49:00 · 2078 阅读 · 0 评论 -
Feature开发一(制作一个简单的自定义菜单)
Features 是MOSS 2007以开箱即用的一套新功能,Features 存储在SharePoint服务器的如下路径下:C:/Program Files/Common Files/Microsoft Shared/web server extensions/12/TEMPLATE/FEATURES。每个Featrue在此路径下有自己的子目录,在每一个Feature子目录下会发现名字为Feat原创 2008-09-04 18:00:00 · 1356 阅读 · 3 评论 -
Feature的定制和部署二(简便开发)
文本转自 http://www.cnblogs.com/jdxyw/articles/1238014.html 禁止商业用途如有侵权请联系我. 大家在写feature的时候可能会觉的敲这么多东西进去是个很痛苦的事情,要是能够像C++ C#有个自动提示和自动完成的功能就好了。其实使用DTD一样可以在VS2008(VS2005中也是可以的)中实现自动提示和自动完成的功能。转载 2008-09-05 09:19:00 · 708 阅读 · 0 评论 -
MOSS入门介绍 和 概念介绍
该文是转自其他网站,连接地址下边有提到,如有侵权 ,请联系我 Microsoft Office Sharepoint Server 2007(MOSS 2007) 是微软最新推出的服务器产品,由于工作原因,接触到门户的东西比较多,后期会将搜到的一些与公司门户相关的东东上传。熟悉微软Office产品线的人都知道,MOSS 2007的上一个版本SPS 2003的全称是 Office原创 2008-09-01 11:31:00 · 7067 阅读 · 0 评论 -
SharePoint自带WebService(Lists Web Service--Checkout、CheckIn Method)
该ws的引用地址是 /_vti_bin/Lists.asmx">http:///_vti_bin/Lists.asmx Check InDim instance As ListsDim pageUrl As StringDim comment As StringDim CheckinType As StringDim returnValue As Booleanre原创 2008-12-17 10:51:00 · 961 阅读 · 0 评论