在ASP.NET中选择如何设置一个DropDownList项目? [英] How to set a dropdownlist item as selected in ASP.NET?

查看:109
本文介绍了在ASP.NET中选择如何设置一个DropDownList项目?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想设置selectedItem设置为ASP。净DropDownList控件编程。

所以我想一个值传递给DropDownList控件设置选择的项目是哪里的项目等于传递的值的值。


解决方案

  dropdownlist.ClearSelection(); //确保了previous选择已被清除
dropdownlist.Items.FindByValue(值).Selected = TRUE;

I want to set selecteditem for asp. net dropdownlist control programmatically.

So I want to pass a value to the dropdownlist control to set the selected item where is the value of the item equal to the passed value.

解决方案

dropdownlist.ClearSelection(); //making sure the previous selection has been cleared
dropdownlist.Items.FindByValue(value).Selected = true;

这篇关于在ASP.NET中选择如何设置一个DropDownList项目?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆