在 sharepoint 2010 中使用图像查看器 Web 部件
我已在共享点页面(例如第 1 页)中插入了图像查看器 Web 部件。实际上,此页面将通过单击其他页面(例如第 2 页)中的员工(链接按钮)来显示。从第 2 页我可以在查询字符串中获取员工 ID。所以现在我必须使用基于员工 ID 的图像填充图像查看器 Web 部件。所有图像都存储在 sharepoint 的用户配置文件中。
任何人都可以提供如何传递参数并从图像查看器 Web 部件获取 imageurl 的解决方案吗?
I have inserted an Image viewer webpart in sharepoint page (say Page 1). Actually this page will be displayed by clickng on a Employee (link button) in onther page ( say Page 2) . From page 2 I can get Employee ID in querystring. So now I have to fill the image viewer webpart with an image based on the Employee ID. All the images stored in user profiles in sharepoint.
Can anybody give a solution how to pass parameter and get the imageurl from image viewer webpart?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可以通过创建自定义 Web 部件并根据员工 ID 设置图像 URL 的值来完成。获取员工 ID:
创建 imagewebpart 对象:
此处设置 ImageWebPart 的 URL 值。完毕
This can be done by creating a custom webpart and setting the value of image URL based on the employee id. Get the employee ID:
Create an object of imagewebpart:
Set the URL value of the ImageWebPart here. Done