您的位置:首页 > 其它

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

2008-06-08 20:54 513 查看
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 2000的Northwind示例数据库作例子):

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 Pane或Shortcut key Ctrl+F1 , 在Task Pane选择Data Source Catalog, 展开XML Web Services并点击Add to Catalog…2.       在弹出的Data Source Properties窗口, 填General页内容, 给当前数据源起个名字, 例如: GetDataSource; 填Source页内容, Service Description Location为http://localhost/AspNetSample/Service1.asmx?WSDL, OK后就Connect Now! 如果Web Services设置正确, 则在Connection Info里会显示相关的Service Name, Operation 等, 我们现在在Operation选GetDataSource, 设置一下GetDataSource的接口参数; 最后要设置的是Login页的Login方法. 完成后就OKXML Web Services下就会出现GetDataSource的图标3.       将GetDataSource拖到页面的一个Web Part Zone内

4.       自定义Data View.4.1.     插入一列, 并将光标置于新增列的单元格内. 再转换到Data View的Data 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:              Table2)         应用xsl:param并实现过滤将           Table           修改成:                        Table             现在全部步骤完成了, 可以在IE浏览效果:
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: