如何从 ASP.net 中的 ASPxComboBox 获取字符串值

发布于 2024-08-30 02:53:06 字数 201 浏览 2 评论 0原文

我试图从 aa DropDownList 中提取选定的值作为 string ,如下所示:

if ((ASPxComboBox1.SelectedItem.Value).ToString = "Selection")

这不起作用。请告诉我是否有办法提取每个选定的字符串?

I'm trying to extract the selected value from a a DropDownList as a string as follows:

if ((ASPxComboBox1.SelectedItem.Value).ToString = "Selection")

This is not working. Please let me know if there is a away of getting each selected string extracted?

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

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

发布评论

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

评论(1

九公里浅绿 2024-09-06 02:53:06

您的语法似乎很奇怪,但请尝试(我假设是 c#,因为您没有指定您使用的语言):

if (ASPxComboBox1.SelectedValue.Equals("Selection"))

在您的代码中,您正在执行分配并将文本“Selection”分配给 ToString ,这应该是'甚至无法编译。

另外,您将其命名为组合框,但 ASP.NET 没有组合框,只有下拉列表...

Your syntax seems odd but try (I am assuming c# because you didn't specify the language your using):

if (ASPxComboBox1.SelectedValue.Equals("Selection"))

In your code you are doing an assignment and assigning the text "Selection" to ToString which shouldn't even compile.

Also you named it a combobox but ASP.NET does not have a combobox just a dropdownlist...

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