筛选 SharePoint 2007 Web 部件中以前的下拉列表

发布于 2024-10-08 19:50:03 字数 310 浏览 0 评论 0原文

我有四个控件;三个 DropDownList 框和常规列表框。我正在为每个项目收集以下 SharePoint 数据:

DropDownList1 = Web 应用程序

DropDownList2 = DropDownList1 选择的网站集

DropDownList3 = 从 DropdownList2 中选择的网站集中的网站

Listbox = DropDownList3 中选择的文档库

由于每个都是彼此的函数,我如何在 C# 中解决这个问题。我想在 Web 部件中呈现它们。

I have four controls; three DropDownList boxes and regular list box. I am gathering the following SharePoint data for each:

DropDownList1 = Web Applications

DropDownList2 = Site Collections of DropDownList1 selection

DropDownList3 = Sites in the site collection from selection in DropdownList2

Listbox = Document Libraries from selection in DropDownList3

Since each is a function of one another, how do I solve this in C#. I want to render them in a web part.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

我不会写诗 2024-10-15 19:50:03

您所要做的就是填充 webpart load 上的 Web 应用程序下拉列表。
为所有三个下拉菜单启用回发 true。
并为所有三个下拉列表创建选定索引更改的处理程序。
在网络应用程序的选定索引更改上填充网站集下拉列表
并在站点集合下拉列表的选定索引更改上填充网络下拉列表
并在 Web 的选定索引更改上使用文档库填充列表框

what you have to do is populate the web application dropdown on webpart load .
enable postback true for all three dropdowns.
and create handler on selected index change for all three dropdowns.
on selected index change of webapplication populate sitecollection dropdown
and on selectedindex change of sitecollection dropdown populate web dropdown
and on selected index change of web populate listbox with document libraries

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