摘要: 在InfoPath 2010里面可以创建2种不同类型的表单,他们分别是:List和Form Library。一。List,不需要写代码,可以应用于一些简单的表单。可以处理一些比较简单的list类型控件,例如:dropdownlist, listbox, checkboxlist。加上一些规则还可以实现多个list控件直接的联动。由于比较简单,这里不做详细介绍。二。Form Library,需要写代码。当表单中有一些比较复杂的控件,例如:Repeater, 多个view的转换,这个时候Form Library就用的上了。当然,完全可以用webpart来实现表单。 1. 简单控件初始化赋值 当要N 阅读全文
posted @ 2011-07-27 12:26 双眼皮的猪 阅读(549) 评论(0) 推荐(0) 编辑
摘要: http://www.microsoft.com/china/msdn/events/webcasts/shared/webcast/consyscourse/CsharpOOD.aspx 阅读全文
posted @ 2011-07-26 17:52 双眼皮的猪 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 参考http://office.microsoft.com/en-us/sharepoint-designer-help/collect-data-from-a-user-in-a-workflow-HA010209808.aspx注意这里的Review Document是一个Task List, 应该在site里面创建一个task list,可以用默认的Tasks. 阅读全文
posted @ 2011-07-26 10:56 双眼皮的猪 阅读(132) 评论(0) 推荐(0) 编辑
摘要: http://koenvosters.wordpress.com/2009/07/31/howto-create-an-event-handler-for-sharepointmoss-2007/ 阅读全文
posted @ 2011-07-25 14:36 双眼皮的猪 阅读(129) 评论(0) 推荐(0) 编辑
摘要: public static class StringFieldNameSortingSupport { #region Private expression tree helpers private static LambdaExpression GenerateSelector<TEntity>(String propertyName, out Type resultType) where TEntity : class { // Create a parameter to pass into the Lambda expression (Entity => Entity 阅读全文
posted @ 2011-07-15 13:39 双眼皮的猪 阅读(997) 评论(0) 推荐(0) 编辑
摘要: Office_SharePoint_Server_2007部署指南.pdf 阅读全文
posted @ 2011-07-14 14:13 双眼皮的猪 阅读(132) 评论(0) 推荐(0) 编辑
摘要: When we hv completed a workflow on Sharepoint Designer 2010. A questioncome up, how can we deploy it as a wsp file?Following steps:1. Clicks Save as Template at the top toolbar. the wsp will be saved on site assets.2. Download the wsp on site assets to local.3. Goto Solutions, upload the wsp and act 阅读全文
posted @ 2011-07-14 11:40 双眼皮的猪 阅读(350) 评论(0) 推荐(0) 编辑
摘要: 参考Custom-built Top Navigation Menu for SharePoint2010这编文章主要注意的是以下控件的代码 public partial class SmoothNavMenu : UserControl { protected void Page_Load(object sender, EventArgs e) { SiteMapNode rootNode = GetSiteMapNodeOfCurrentWeb(); menuContentLiteral.Text = BuildMenuContent(rootNode); } private string 阅读全文
posted @ 2011-07-12 14:37 双眼皮的猪 阅读(381) 评论(0) 推荐(0) 编辑
摘要: 1.Create a config file calls 'log4net.config', and put it in 'c:\log\'<?xml version="1.0" encoding="utf-8" ?><configuration> <configSections> <!-- START Defining the sections --> <section name="log4net" type="log4net.Confi 阅读全文
posted @ 2011-07-08 10:12 双眼皮的猪 阅读(855) 评论(0) 推荐(0) 编辑
摘要: 看看视频,跟着做http://download.csdn.net/source/3424616这里是组件下载的地方http://download.csdn.net/source/3424622 阅读全文
posted @ 2011-07-07 15:53 双眼皮的猪 阅读(222) 评论(0) 推荐(1) 编辑