筛选 SharePoint 2007 Web 部件中以前的下拉列表
我有四个控件;三个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您所要做的就是填充 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