以编程方式从库中读取
我有一个名为“xsl 库”的文档库,其中包含一堆 xsl...我需要从那里读取一个文件(任何一个),以便我可以使用它转换呈现 web 部件的 xml...布局webpart是由xsl决定的...我该怎么做?
注:环境->共享点 2007
I have a document library named "xsl library" with a bunch of xsl's... and I need to read a file (anyone one) from there so I can use it transform a xml that renders a webpart... the layout out of a webpart is determined by the xsl... how can I do it?
Notes: Enviroment -> Sharepoint 2007
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
所以看起来您需要一些服务器端代码:
然后您编写类似于上面 Vlad 提供的代码来进行转换。
有关所使用函数的详细信息,请参阅 MSDN - http:// msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.getfile.aspx、http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spfile.openbinarystream.aspx。
So it looks like you need some server side code:
Then you code similar to one provided by Vlad above to make the transformation.
See MSDN for more info on functions used - http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.getfile.aspx , http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spfile.openbinarystream.aspx.