演练:将应用程序页添加到工作流
本演练演示如何将显示从工作流派生的数据的应用程序页添加到工作流项目。 它建立在主题演练:创建具有关联和启动窗体的工作流中所述项目的基础上。
本演练演示了下列任务:
将 ASPX 应用程序页添加到 SharePoint 项目。
从工作流项目获取数据并对其进行操作。
在应用程序页上的表中显示数据。
注意
以下说明中的某些 Visual Studio 用户界面元素在计算机上出现的名称或位置可能会不同。 这些元素取决于你所使用的 Visual Studio 版本和你所使用的设置。 有关详细信息,请参阅个性化设置 IDE。
先决条件
您需要满足以下条件才能完成本演练:
支持的 Microsoft Windows 和 SharePoint 版本。
Visual Studio。
你还需要完成主题演练:创建具有关联和启动窗体的工作流中的项目。
修改工作流代码
首先,向工作流添加一行代码,以将“结果”列的值设置为支出报表的金额。 稍后在支出报表摘要计算中会用到此值。
在工作流中设置结果列的值
从主题演练:创建具有关联和启动窗体的工作流中加载已完成的项目。
打开 Workflow1.cs 或 Workflow1.vb 的代码(具体取决于你的编程语言)。
将以下代码添加到
createTask1_MethodInvoking
方法底部:
创建应用程序页
接下来,向项目添加 ASPX 窗体。 此窗体将显示从支出报表工作流项目获取的数据。 为此,需要添加一个应用程序页。 应用程序页使用与其他 SharePoint 页相同的母版页,这意味着它将与 SharePoint 站点上的其他页类似。
向项目添加应用程序页
选择“ExpenseReport”项目,然后在菜单栏上选择“项目”>“添加新项” 。
在“模板”窗格中,选择“应用程序页”模板,使用项目项的默认名称 (ApplicationPage1.aspx),然后选择“添加”按钮 。
在 ApplicationPage1.aspx 的 XML 中,将
PlaceHolderMain
部分替换为以下内容:<asp:Content ID="Main" ContentPlaceHolderID="PlaceHolderMain" runat="server"> <asp:Label ID="Label1" runat="server" Font-Bold="True" Text="Expenses that exceeded allotted amount" Font-Size="Medium"></asp:Label> <br /> <asp:Table ID="Table1" runat="server"> </asp:Table> </asp:Content>
此代码将表与标题一起添加到页面。
通过将
PlaceHolderPageTitleInTitleArea
部分替换为以下内容,向应用程序页添加一个标题:<asp:Content ID="PageTitleInTitleArea" ContentPlaceHolderID="PlaceHolderPageTitleInTitleArea" runat="server" > Expense Report Summary </asp:Content>
对应用程序页进行编码
接下来,将代码添加到支出报表摘要应用程序页。 当你打开页面时,代码会扫描 SharePoint 中的“任务”列表,以检查超出分配的支出限制的支出。 报表将列出每个项以及支出的总和。
对应用程序页进行编码
选择“ApplicationPage1.aspx”节点,然后在菜单栏上选择“查看”>“代码” 以显示应用程序页后面的代码。
将类顶部的 using 或 Import 语句(具体取决于你的编程语言)替换为以下内容 :
将以下代码添加到
Page_Load
方法中:try { // Reference the Tasks list on the SharePoint site. // Replace "TestServer" with a valid SharePoint server name. SPSite site = new SPSite("http://TestServer"); SPList list = site.AllWebs[0].Lists["Tasks"]; // string text = ""; int sum = 0; Table1.Rows.Clear(); // Add table headers. TableHeaderRow hr = new TableHeaderRow(); hr.BackColor = Color.LightBlue; TableHeaderCell hc1 = new TableHeaderCell(); TableHeaderCell hc2 = new TableHeaderCell(); hc1.Text = "Expense Report Name"; hc2.Text = "Amount Exceeded"; hr.Cells.Add(hc1); hr.Cells.Add(hc2); // Add the TableHeaderRow as the first item // in the Rows collection of the table. Table1.Rows.AddAt(0, hr); // Iterate through the tasks in the Task list and collect those // that have values in the "Related Content" and "Outcome" // fields - the fields written to when expense approval is // required. foreach (SPListItem item in list.Items) { string s_relContent = ""; string s_outcome = ""; try { // Task has the fields - treat as expense report. s_relContent = item.GetFormattedValue("Related Content"); s_outcome = item.GetFormattedValue("Outcome"); } catch { // Task does not have fields - skip it. continue; } if (!String.IsNullOrEmpty(s_relContent) && !String.IsNullOrEmpty(s_outcome)) { // Convert amount to an int and keep a running total. sum += Convert.ToInt32(s_outcome); TableCell relContent = new TableCell(); relContent.Text = s_relContent; TableCell outcome = new TableCell(); outcome.Text = "$" + s_outcome; TableRow dataRow2 = new TableRow(); dataRow2.Cells.Add(relContent); dataRow2.Cells.Add(outcome); Table1.Rows.Add(dataRow2); } } // Report the sum of the reports in the table footer. TableFooterRow tfr = new TableFooterRow(); tfr.BackColor = Color.LightGreen; // Create a TableCell object to contain the // text for the footer. TableCell ftc1 = new TableCell(); TableCell ftc2 = new TableCell(); ftc1.Text = "TOTAL: "; ftc2.Text = "$" + Convert.ToString(sum); // Add the TableCell object to the Cells // collection of the TableFooterRow. tfr.Cells.Add(ftc1); tfr.Cells.Add(ftc2); // Add the TableFooterRow to the Rows // collection of the table. Table1.Rows.Add(tfr); } catch (Exception errx) { System.Diagnostics.Debug.WriteLine("Error: " + errx.ToString()); }
警告
请务必将代码中的“TestServer”替换为运行 SharePoint 的有效服务器的名称。
测试应用程序页
接下来,确定应用程序页是否正确显示支出数据。
测试应用程序页
按 F5 运行项目并将项目部署到 SharePoint。
选择“主页”按钮,然后选择快速启动栏上的“共享文档”链接以显示 SharePoint 站点上的“共享文档”列表。
若要展示本例中的支出报表,请选择页面顶部“库工具”选项卡上的“文档”链接,然后在工具功能区上选择“上传文档”按钮,将一些新文档上传到“文档”列表中 。
上传完一些文档后,选择页面顶部“库工具”选项卡上的“库”链接,然后在工具功能区上选择“库设置”按钮来实例化工作流 。
在“文档库设置”页的“权限和管理”部分中,选择“工作流设置”链接 。
在“工作流设置”页上,选择“添加工作流”链接 。
在“添加工作流”页中,选择“ExpenseReport - Workflow1”工作流,为工作流输入名称,如“ExpenseTest”,然后选择“下一步”按钮 。
工作流“关联”窗体随即显示。 使用它来报告支出限制金额。
在“关联”窗体中,在“自动审批限制”框中输入“1000”,然后选择“关联工作流”按钮 。
选择“主页”按钮可返回 SharePoint 主页。
在快速启动栏上,选择“共享文档”链接。
选择一个已上传的文档以显示下拉箭头,选择它,然后选择“工作流”项。
选择 ExpenseTest 旁边的图像以显示工作流“启动”窗体。
在“总支出”文本框中,输入一个大于 1000 的值,然后选择“启动工作流”按钮 。
当报告的支出超过分配的支出金额时,系统会将一个任务添加到任务列表。 名为“ExpenseTest”且值为“已完成”的列被添加到“共享文档”列表中的支出报表项中。
对“共享文档”列表中的其他文档重复步骤 11 - 13。 (文档的确切数量并不重要。)
在 Web 浏览器中打开以下 URL 以显示支出报表摘要应用程序页: http://SystemName/_layouts/ExpenseReport/ApplicationPage1.aspx。
支出报表摘要页列出了超出已分配金额的所有支出报表、超出的金额以及所有报表的总额。