SharePoint:DataView如何绑定Web Service返回的主从表数据集

来源:互联网 发布:用友固定资产软件 编辑:程序博客网 时间:2024/04/28 20:56
By Ben

                                                                                                                                         

Working With the Data View Web Part
Microsoft
®  Office FrontPage® 2003


            Author: Ben
            MSN: benjamine65@hotmail.com


  • 如何使用DataView调用XML Web Services
  • 如何显示父子从表

 

l       设计目标:

Data View绑定Web Service返回的数据集, 显示父表, 同时以父表当前记录关联字估为条件, 嵌套显示子表

l       数据结构(以下例子以Sql Server 2000Northwind示例数据库作例子):

l       样例Web Service:

如有: http://localhost/AspNetSample/Service1.asmx Web Services, 其中关键代码如:

[WebMethod]

public DataSet GetDataSource(string TableName)

{

DataSet ds = new DataSet("DataSetTables");

DataTable dt = new DataTable();

DataTable dtCus = new DataTable();

 

//sql

dt = SqlHelper.ExecuteDataset(ConnectionString, CommandType.Text, "select top 100  * from Orders").Tables[0];

dt.TableName = TableName;

dtCus = SqlHelper.ExecuteDataset(ConnectionString, CommandType.Text, "select top 100  * from Customers").Tables[0];

dtCus.TableName = "Customers";

                                                                       

ds.Tables.Add(dt.Copy());

ds.Tables.Add(dtCus.Copy());

 

return ds;

}

 

 

l       利用FrontPage 2003添加Data Source Catalog:

1.       打开Task Pane. 下拉菜单View -> Task PaneShortcut key Ctrl+F1 , Task Pane选择Data Source Catalog, 展开XML Web Services并点击Add to Catalog…

2.       在弹出的Data Source Properties窗口, General页内容, 给当前数据源起个名字, 例如: GetDataSource; Source页内容, Service Description Locationhttp://localhost/AspNetSample/Service1.asmx?WSDL, OK后就Connect Now! 如果Web Services设置正确, 则在Connection Info里会显示相关的Service Name, Operation , 我们现在在OperationGetDataSource, 设置一下GetDataSource的接口参数; 最后要设置的是Login页的Login方法. 完成后就OKXML Web Services下就会出现GetDataSource的图标

3.       GetDataSource拖到页面的一个Web Part Zone

4.       自定义Data View.

4.1.     插入一列, 并将光标置于新增列的单元格内. 再转换到Data ViewData View Details面板, 并选中Customers节点, Insert Subview

4.2.     设置关联关系. 此时Customers的记录会在显示Orders记录的Data View的那个新增的列内全部显示出来, 还未会根据CustomerID显示关联的Customer记录

所以现在要通过修改Data View XSL来实现关联过滤.

分析:

点选Data View GetDataSource, 切换到Code 视图, 找到关键的 XSL 语句, :

由此可以看出子表Customers是定义成一个xsl:template name=”dvt_2” , 我可以将CustomerID作为xsl:param传递到xsl:template里作为过滤条件

1)         添加xsl:param

修改 为如下:

with-param name="CustomerID" select="CustomerID"/>

查找dvt_2 template定义:

       Table

添加xsl:param:

      

       Table

2)         应用xsl:param并实现过滤

           Table

           

修改成:

           

            Table

            

 

现在全部步骤完成了, 可以在IE浏览效果: