WindTeam

 

2011年8月24日

关于BCS与SQL

摘要: 1.BCS权限赋予所有需求用户,慎用执行,设置权限分配。2.建立SSS目标应用程序验证ID:应用程序-管理应用程序服务-sss 设置权限用户administrator,设凭据可登录数据库的帐户3.SPD 阅读全文

posted @ 2011-08-24 17:26 WindTeam 阅读(155) 评论(0) 推荐(0) 编辑

2011年7月14日

人员选择器

摘要: 页面声明如下:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><%@RegisterTagprefix="SharePoint"Namespace="Microsoft.SharePoint.WebControls"Assembly="Microsoft.SharePoint,Version=12.0.0.0,Culture=neutral,PublicKeyToken=71e9bce1 阅读全文

posted @ 2011-07-14 22:28 WindTeam 阅读(553) 评论(0) 推荐(0) 编辑

2011年7月4日

hashtable遍历

摘要: 1)HashTable 存储的是无序的,也就是最先存储的键、值对不一定在第一个位置上;2)HashTable 存储的是弱类型的,也就是要由自己来控制存储类型,并且取值时要进行强制类型转换;这个要怪微软的方法描述不够清晰,要是清晰了直接就可以从描述中找到方法:先创建一个HashTable对象:System.Collections.HashTable ht=new System.Collections.HashTable();ht.Add("key_A","value_A");ht.Add("key_B","value_B&qu 阅读全文

posted @ 2011-07-04 11:13 WindTeam 阅读(6261) 评论(0) 推荐(0) 编辑

2011年6月29日

rest api

摘要: 由于 REST 可以降低开发的复杂度,提高系统的可伸缩性,增强系统的可扩展性,简化应用系统之间的集成,因而得到了广大开发人员的喜爱,同时得到了业界广泛的支持。比如 IBM,Google 等公司的很多产品都提供了 REST API 给开发人员;与此同时,大量的开源项目和云计算服务都提供了 REST API 接口。而在最近,一些新产品的开发甚至已经几乎完全抛弃了传统的类似 JSP 的技术, 转而大量使用 REST 风格的构架设计, 即在服务器端所有商业逻辑都以 REST API 的方式暴露给客户端, 所有浏览器用户界面使用 widget,Ajax,HTML5 等技术,用 HTTP 的方式与后台直接 阅读全文

posted @ 2011-06-29 08:40 WindTeam 阅读(1927) 评论(0) 推荐(0) 编辑

2011年6月24日

Sharepoint 2010客户端对象模型使用 Ecmascript

摘要: ECMAScript是基于javascript的客户端脚本语言,SharePoint 2010中支持使用ECMAScript来调用客户端对象模型背景众所周知客户端对象模型是SharePoint 2010 中相当实用的新特性之一,你可能已经了解在SharePoint2007中你如果不想再服务器端调用SharePoint对象,只有通过Web Services来实现。现在在SharePoint 2010 中你可以使用客户端对象模型来实现与SharePoint的交互,当然你也可以继续使用Web Services的方式。SharePoint 客户端对象模型工作原理SharePoint客户端对象模型是Sh 阅读全文

posted @ 2011-06-24 09:06 WindTeam 阅读(393) 评论(0) 推荐(0) 编辑

2011年6月20日

sharepoint treeview 更全

摘要: 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.WebControls.WebParts;using System.Web.UI.HtmlControls;using System.Data.SqlClient;using System.IO;usin 阅读全文

posted @ 2011-06-20 16:14 WindTeam 阅读(341) 评论(0) 推荐(0) 编辑

sharepoint2010 treeview实现

摘要: TreeView控件的节点加载一般有两种方式,静态加载与动态加载,下面分别进行实现。(1) 静态加载节点,一次加载所有节点创建用户控件FolderTree1.ascx ,在ascx页面拖一个Button和TreeView上去,cs页面代码如下。using System;using System.Collections;using System.Configuration;using System.Data;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.HtmlControls 阅读全文

posted @ 2011-06-20 14:45 WindTeam 阅读(356) 评论(0) 推荐(0) 编辑

2011年6月17日

SPDcoumentLibrary

摘要: sharepoint.utilitiesSPSite oSiteCollection = SPContext.Current.Site;SPWebCollection collWebsites = oSiteCollection.AllWebs;foreach (SPWeb oWebsite in collWebsites){ SPListCollection collLists = oWebsite.Lists; foreach (SPList oList in collLists) { if (oList.BaseType == SPBaseType.DocumentLibrary) { 阅读全文

posted @ 2011-06-17 10:04 WindTeam 阅读(277) 评论(0) 推荐(0) 编辑

2011年6月13日

open api

摘要: http://api.huihoo.com/ 阅读全文

posted @ 2011-06-13 16:35 WindTeam 阅读(140) 评论(0) 推荐(0) 编辑

身份验证

摘要: 1.慝名身份验证,FORM,基本身份验证,摘要式身份验证 fobbiden.2.Forms,摘要式身份验证 forbbiden(OKMOBILE). 阅读全文

posted @ 2011-06-13 10:45 WindTeam 阅读(224) 评论(1) 推荐(0) 编辑

导航