下拉列表选择
我有三个下拉列表控件。每个下拉列表包含静态值 1,2,3,4 我需要做的是,当在第一个下拉列表中选择一个项目(在 SelectedIndexChanged 事件上)时,应在其他两个下拉列表中选择相同的项目
I have three DropDown List Controls.each dropdown contains the static values 1,2,3,4
what i need to do is when a item is selected on the first dropdown(on SelectedIndexChanged Event) same items should be selected in other two dropdowns
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这就是你要做的。
在 ASPX 代码中:
在代码隐藏中:
仅键入
ddl1.SelectedValue = ddl2.SelectedValue
不起作用,因为DropDownList.SelectedValue
是只读的。请注意,我不仅仅将所有 DDL 的
SelectedIndex
设置为发送者的。您可以在示例场景中使用它,但是如果您的某个 DDL 的 ListItem 的顺序与其他 DDL 的顺序不同,则代码将会中断。在我看来,这使得这种做法很危险,但是 YMMV。另外,如果您决定推广 SetValue 方法(我经常将其作为扩展方法添加到整个项目中的
DropDownList
控件中),则应该处理在DDL,大概是通过抛出异常。您还可以使用 FindByText 制作 SetText 版本。Here's what you do.
In the ASPX code:
In the codebehind:
Just typing
ddl1.SelectedValue = ddl2.SelectedValue
won't work, becauseDropDownList.SelectedValue
is read-only.Note that I didn't just set the
SelectedIndex
of all the DDLs to that of the sender. You can use that in your example scenario, but if one of your DDLs ever has its ListItems in a different order from the others, the code will break. In my opinion, this makes it dangerous practice, but YMMV.Also, if you decide to generalize the SetValue method (I often add it as an extension method to the
DropDownList
control across the entire project), you should handle cases where the target value isn't found in the DDL, presumably by throwing an exception. You can also make a SetText version usingFindByText
.将第二个和第三个下拉列表中的 selectedvalue 属性设置为第一个下拉列表中的选定值。将DropDown设置为autopostback =“true”,以便它回发到服务器,您可以适当地设置它。
或者,当第一个更改客户端事件触发时,使用客户端 JavaScript 更改其他选择元素上的 selectedindex 属性。
Set the selectedvalue property on 2nd and 3rd drop down to the selected value on the first. Set the DropDown to autopostback="true" so that it posts back to the server, and you can set it appropriately.
OR, use client-side JavaScript to change the selectedindex property on the other select elements when the change client event fires for the first.
您需要做的就是设置 <其他下拉列表的 code>SelectedIndex 如下所示:
All you need to do is set the
SelectedIndex
of your other drop down lists like this:尝试以下操作:
标记:
代码隐藏:
Try the following:
Markup:
Code-behind: