使用 Sharepoint 2010 Excel Services,我如何从具有版本控制的电子表格中获取值
我可以从 xlsx 文件中获取值,并将它们绑定到 sharepoint 2010 中 web 部件内的 gridview。
但我确实想对包含电子表格的文档库使用版本控制。 有什么方法可以让我选择特定版本的电子表格并使用它来读取数据。
例如:
- abc.xlsx(版本 3.0)
- abc.xlsx(版本 2.0)
- abc.xlsx(版本 1.0)
我想从版本 2.0 收集信息,我该如何收集?
提前致谢(:
I can get the values from a xlsx file and bind them to a gridview within a webpart in sharepoint 2010.
But I do want to use version-control for this document library containing spreadsheets.
Is there any way for me to select the specific versioned spreadsheet and use it for reading data.
For example:
- abc.xlsx (version 3.0)
- abc.xlsx (version 2.0)
- abc.xlsx (version 1.0)
I want to gather info from version 2.0, how can I?
Thanks in advance(:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于没有提供更好的建议,我找到了一种简单的方法:
首先获取文件,然后使用 GetVersions 选择特定版本的文件,然后读取文件并进行必要的修改。
我想这个没有快速可用的。
Since no better suggestiones provided, I've found a simple way:
First get the file, then using GetVersions select a specific versioned one, then read the file and make modifications necessary.
I guess no quickie for this one available.