在 sharepoint 2010 中使用图像查看器 Web 部件

发布于 2024-11-23 15:51:27 字数 224 浏览 1 评论 0原文

我已在共享点页面(例如第 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦纸 2024-11-30 15:51:27

这可以通过创建自定义 Web 部件并根据员工 ID 设置图像 URL 的值来完成。获取员工 ID:

QueryParameterValue = HttpContext.Current.Request.QueryString[0].ToString();

创建 imagewebpart 对象:

protected Microsoft.SharePoint.WebPartPages.ImageWebPart myImageWebPart = new Microsoft.SharePoint.WebPartPages.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:

QueryParameterValue = HttpContext.Current.Request.QueryString[0].ToString();

Create an object of imagewebpart:

protected Microsoft.SharePoint.WebPartPages.ImageWebPart myImageWebPart = new Microsoft.SharePoint.WebPartPages.ImageWebPart();

Set the URL value of the ImageWebPart here. Done

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文