asp.net – 通过文本查找DropDownList索引

前端之家收集整理的这篇文章主要介绍了asp.net – 通过文本查找DropDownList索引前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个填充的DropDownList.如何找到Text值为“x”的索引?

解决方法

如果你想在服务器端获得价值,你可以按照这个.
ddlsample.SelectedIndex = ddlsample.Items.IndexOf(ddlsample.Items.FindByValue("x")); // If you want to find text by value field.
ddlsample.SelectedIndex = ddlsample.Items.IndexOf(ddlsample.Items.FindByText("x"));// If you want to find text by TextField.
原文链接:https://www.f2er.com/aspnet/250428.html

猜你在找的asp.Net相关文章