0

我有一个RadioButtonList和一个ListBox。我已经绑定RadioButtonList到数据库。因此,在 中选择一个项目后RadioButtonList,我想将一些数据检索到ListBox. 我试过的代码是:

protected void Page_Load(object sender, EventArgs e)
{
   RadioFill();
}

public void RadioFill()
    {
        SqlDataAdapter mydata = new SqlDataAdapter("SELECT DISTINCT Param_Name FROM Parameter_Value_Master", con);
        DataSet dset = new DataSet();
        mydata.Fill(dset, "Table");
        RadioButtonList1.Items.Clear();
        RadioButtonList1.DataSource = dset.Tables[0];
        RadioButtonList1.DataTextField = dset.Tables[0].Columns["Param_Name"].ColumnName;
        RadioButtonList1.DataBind();
    }

protected void RadioButtonList1_SelectedIndexChanged(object sender, EventArgs e)
{
SqlDataAdapter mydata = new SqlDataAdapter("SELECT Value_Option FROM   Parameter_Value_Master", con);
DataSet dset = new DataSet();
mydata.Fill(dset, "Table");
ListBox1.Items.Clear();
ListBox1.DataSource = dset.Tables[0];
ListBox1.DataTextField = dset.Tables[0].Columns["Value_Option"].ColumnName;
ListBox1.DataBind();
}

我在这里面临的问题是在选择一个项目时,我放置了我的整个面板RadioButtonList并且ListBox不可见。

请帮助...!谢谢...!!

4

1 回答 1

1

首先,将 Page_Load 方法更改为:

protected void Page_Load(object sender, EventArgs e)¨
{
   if (!Page.IsPostBack)
   {
          RadioFill();
   }
}

如果它没有帮助而不是从您的 *.aspx 文件中发布代码。

备注:RadioButtonList1_SelectedIndexChanged(object sender, EventArgs e)方法,不存在基于单选按钮列表选择值的选择。

于 2012-09-22T14:18:19.897 回答