sharepoint 网址收藏.

1,用sharepoint搭建的网站
http://www.wssdemo.com/default.aspx
2,Workflow Developer Starter Kit for WSS v3
http://weblogs.asp.net/jan/archive/2006/06/29/Workflow-Developer-Starter-Kit-for-WSS-v3-_2B00_-More.aspx
3,Create custom field type in WSS V3
http://www.sharepointblogs.com/jimyang/archive/2006/07/09/9025.aspx
4, Cross-List Queries in WSS v3
http://blog.u2u.info/DottextWeb/patrick/archive/2006/05/29/22104.aspx
5, SharePoint Server 2007 Sample: Web Part That Calls Excel Web Services
http://blog.u2u.info/DottextWeb/patrick/archive/2006/11/18/36717.aspx
6,用vs 2005 创建 wss3 webpart;
http://blog.u2u.info/DottextWeb/patrick/archive/2006/11/15/36545.aspx
7, Build web parts with AJAX
8, Building a ‘Hello World’ Web Part with the new Visual Studio Extensions for SharePoint 2007
9, SharePoint Manager 2007
10,Walkthrough - Windows SharePoint Services 3.0 Tools: Visual Studio 2005 Extensions
http://sharepointsolutions.blogspot.com/2006/11/walkthrough-windows-sharepoint.html
11,Using Excel Web Services in a SharePoint Web Part 
http://msdn2.microsoft.com/en-us/library/aa973804.aspx
12, sharepoint service与server的区别
http://office.microsoft.com/en-us/sharepointtechnology/FX101758691033.aspx
13,form认证
http://blogs.msdn.com/sharepoint/archive/2006/08/16/702010.aspx
http://www.developer.com/net/asp/article.php/3622481
14, ms technet的资料
http://technet2.microsoft.com/Office/en-us/library/396ee7ae-6dc6-4d48-8448-54a0033f39781033.mspx?mfr=true
15,How to add a new ContentType
http://blogs.msdn.com/karthick/archive/2006/11/28/wss-3-0-how-to-add-a-new-contenttype.aspx
16,Adding links to the quick launch bar
http://blogs.msdn.com/karthick/archive/2006/11/28/wss-3-0-adding-links-to-the-quick-launch-bar.aspx
17,How to create new SharePoint Feature
http://blogs.msdn.com/karthick/archive/2006/11/28/wss-3-0-features.aspx
18,form 认证,中文
http://www.msotec.net/Forums/ShowThread.aspx?PostID=4867
form 认证丢失的功能
http://technet2.microsoft.com/Office/en-us/library/74f80404-bfba-43b5-8941-95c4795df9d11033.mspx?mfr=true
18,wss3开发用户控件
http://blogs.msdn.com/polo_lee/archive/2006/11/29/user-control-wss-webpart-work-around.aspx
19 wss 3工作流的开发
http://blogs.msdn.com/pandrew/archive/2006/12/02/Learn-about-workflow-in-Windows-SharePoint-Services-version-3.aspx
20 MossMenu source code released 
  http://blogs.msdn.com/ecm/archive/2006/12/02/customizing-the-wss-3-0-moss-2007-menu-control-mossmenu-source-code-released.aspx
21 很不错的网站,很多入们资料
http://www.eallies.com/Blogs/Read.aspx?Unique=32
22,SharePoint Portal Server 2003深入指南
http://book.csdn.net/bookfiles/160/
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
sharepoint是一款由微软公司推出的企业级协同平台,在企业中得到了广泛的应用。sharepoint与其他文件共享平台的不同之处在于,它提供了批量处理文件的能力。在sharepoint中,可以使用folder.addsubfolder方法创建子目录,在目录中添加文件等。 folder.addsubfolder方法是sharepoint中一个常用的方法之一,它可以通过调用该方法来创建新的子目录。使用该方法,我们可以在sharepoint中更加方便地存储和组织文件。 在使用folder.addsubfolder方法之前,我们需要先定义一个Folder对象并且指定它的路径。例如,我们可以使用下面的代码创建一个名为“myFolder”的文件夹: var context = SP.ClientContext.get_current(); var web = context.get_web(); var folder = web.getFolderByServerRelativeUrl('/Shared Documents/myFolder'); context.load(folder); 接下来,我们可以通过以下代码创建一个子目录: var newFolder = folder.get_folders().add('mySubFolder'); context.load(newFolder); 创建子目录后,我们可以使用以下代码在新的子目录中添加文件: var fileCreationInformation = new SP.FileCreationInformation(); fileCreationInformation.set_url('myFile.txt'); fileCreationInformation.set_content(new SP.Base64EncodedByteArray()); fileCreationInformation.set_overwrite(true); var newFile = newFolder.get_files().add(fileCreationInformation); context.load(newFile); 通过使用这些方法,我们可以更加方便地进行批量操作,实现文件的自动化管理。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值