自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

从零开始的生活是充实的!

让我们一起学习快乐!

  • 博客(11)
  • 资源 (2)
  • 收藏
  • 关注

转载 SharePoint2010 自定义 Delegate 控件

启动 Microsoft Visual Studio 2010 中的 SharePoint 开发工具。在“文件”菜单上,指向“新建”,然后单击“项目”。在“项目类型”中的“Visual Basic”或“C#”下,选择“空白 SharePoint 项目”。键入 EcmaScriptDelegate 作为项目名称。单击“确定”。在“SharePoint 自定义向导”中,选择“部署为场解决方案”。单击“完成”。在“解决方案资源管理器”中,右键单击“EcmaScriptDelegate”项目。依次选择“添加”和“新

2011-04-07 21:42:00 1123

转载 在 Web 应用程序中使用 SharePoint API 以避免页面验证错误

<br />SharePoint Foundation 中的 Web 应用程序依据应用程序池标识运行。出于安全原因,当从 Web 应用程序访问 SharePoint Foundation API 时,大多数 API 都将具有限制。因此,这些 API 会引发大量的页面验证错误。若要避免此问题,请更新 Web 应用程序,如下所述。<br />若要更新 Web 应用程序以避免出现页面验证错误,请执行下面的步骤:1. 在 SharePoint 上下文中运行 Web 应用程序<br />为此,在任意 SharePoi

2011-04-07 21:37:00 1338

原创 SharePoint 2010 工作流解决方案:向工作流中添加应用程序页

<br />向工作流中添加应用程序页<br />修改工作流代码<br />首先,向工作流中添加一行代码,以将“Outcome”(结果)列的值设置为零报销单上显示的金额。以后会在报销单汇总计算中用到此值。设置工作流中的“Outcome”(结果)列的值<br />1.       将在SharePoint 2010 工作流解决方案:创建带有关联窗体和启动窗体的工作流 主题中完成的项目加载到 Visual Studio。<br />2.       打开 Workflow1.cs 代码<br />3.      

2011-04-07 18:27:00 1632

原创 SharePoint 2010 工作流解决方案:将 SharePoint Designer 可重用工作流导入 Visual Studio(2)

<br />将 .wsp 文件导入到 Visual Studio 中<br />使用“导入可重用工作流”项目将 .wsp 文件导入到 Visual Studio 中。此项目将工作流从一个可重用的声明性工作流转换为一个代码工作流。转换工作流之后,您将使用代码来修改其行为。<br />从 .wsp 文件导入工作流并进行修改<br />1.       在 Visual Studio 中,通过指向“文件”菜单上的“新建”并单击“新建项目”,显示“新建项目”对话框。<br />2.       展开“Visual

2011-04-07 17:28:00 2047

原创 SharePoint 2010 工作流解决方案:将 SharePoint Designer 可重用工作流导入 Visual Studio(1)

<br />将 SharePoint Designer 可重用工作流导入 Visual Studio<br />在 SharePoint Designer 中创建的工作流(即,声明性工作流)由 XML 语句组成,而非由代码组成。 SharePoint Designer 2010 引入了可重用工作流,它们是可由 SharePoint 站点中的不同列表使用的可移植的声明性工作流。<br />在 Visual Studio 2010 中创建的工作流(如顺序工作流和状态机工作流)称为“代码工作流”。代码工作流由 X

2011-04-07 16:22:00 2011

原创 SharePoint 2010 工作流解决方案:创建自定义网站工作流活动

创建自定义网站工作流活动·         本演示如何使用 Visual Studio 为网站级工作流创建自定义活动。(网站级工作流适用于整个网站,而不只是网站上的列表。)自定义活动会创建一个备份的公告列表,然后将公告列表中的内容复制到创建网站工作流自定义活动项目首先,创建一个用来包含和测试自定义工作流活动的项目。创建网站工作流自定义活动项目1.       通过指向“文件”菜单上的“新建”并单击“新建项目”,显示“新建项目”对话框。2.       展开“Visual C#”下的“SharePoint”节

2011-04-06 22:01:00 2914

翻译 Using the SharePoint 2010 Client Object Model_Part_6

<br />Time to wrap up this series and we’re going to mostly talk about managing web parts using the client object model. First, however, we’re going to take a quick peek at something else you can do, which is create additional Edit Control Block (ECB) menu

2011-04-06 21:34:00 1270

翻译 Using the SharePoint 2010 Client Object Model_part_4

<br />1.     Using the SharePoint 2010 Client Object Model - Part 4 <br />In the first three parts of this series we’ve gone through quite a bit of code that shows how to retrieve data from lists. In this post, we’re going to show how to actually create a

2011-04-06 21:31:00 1034

翻译 Using the SharePoint 2010 Client Object Model_part_3

<br />1.     Using the SharePoint 2010 Client Object Model - Part 3 <br />In the first two parts of this posting I described the pattern you can use to retrieve data with the client object model (“client OM”). I showed how to use the same pattern to retrie

2011-04-06 21:30:00 1084

翻译 Using the SharePoint 2010 Client Object Model_part_2

<br />In part 1 of this post, I described some general features of the new client object model (“client OM”) that is included with SharePoint 2010. I also walked through a pattern for retrieving a collection of all of the lists in a web using that object m

2011-04-06 21:28:00 916

翻译 Using the SharePoint 2010 Client Object Model_part_1

<br />SharePoint 2010 introduces a new client side object model (hereafter referred to as the “client OM”) for retrieving data. It supports a subset of functionality contained in the server side object model, but generally speaking gives you ready access t

2011-04-06 21:27:00 1519

JSGrid甘特图代码

利用sharepoint2010中的jsgrid制做的甘特图

2011-03-19

ASPXCollectFeedbackFor2010

wss中收集反馈的工作流,利用自定义任务内容类型,流程中均使用aspx页面,经过调整在2010中测试可用。 使用vs2010开发。

2011-01-02

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除