asp.net – 在Selectedindexchanged事件中选择下拉列表值

前端之家收集整理的这篇文章主要介绍了asp.net – 在Selectedindexchanged事件中选择下拉列表值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用Vb.net在asp.net网站上工作,我有一个autopostback = true的下拉列表,我需要在更改项目时获取所选值,或者我想获取触发selectedindexchanged事件的项目.

任何帮助请..

解决方法

在ie.你的Page_Load集
this.ComboBox1.SelectedIndexChanged += new System.EventHandler(ComboBox1_SelectedIndexChanged);

然后像这样编写事件处理程序:

private void ComboBox1_SelectedIndexChanged(object sender,System.EventArgs e)
{
  ComboBox comboBox = (ComboBox) sender;
  string selected = (string) comboBox.SelectedItem;
}

在设置组合框默认值之前,请确保在Page_Load中编写此内容,否则最终将使用此选项:

if (Page.IsPostBack)
  return;
原文链接:https://www.f2er.com/aspnet/247509.html

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