0

我正在将数据库中的值显示到下拉列表中。但我无法将相应的值放入 DDL。

if (dt.Rows.Count > 0)
            {
                DataTable dt1 = new DataTable();
                dt1 = bll.getnewid(TextBox1.Text);

                    if (dt1.Rows.Count > 0)
                    {

                        Session["pid"] = dt1.Rows[0]["NewidColumn"].ToString();
                        Session["email"] = dt1.Rows[0]["EmailID"].ToString();
                        Session["gender"] = dt1.Rows[0]["Gender"].ToString();
                        Session["mobile"] = dt1.Rows[0]["MobileNo"].ToString();
                        Session["country"] = dt1.Rows[0]["Country"].ToString();
                        Session["state"] = dt1.Rows[0]["State"].ToString();
                      }

我正在这样显示

   DropDownList1.Text = Session["country"].ToString();
            DropDownList2.Text = Session["state"].ToString();

我能够在数据表中获取国家和州的值。但我无法在 DDL 中显示它们。

4

6 回答 6

1
DropDownList1.Items.Add(new ListItem(Session["country"].ToString()); 
DropDownList2.Items.Add(new ListItem(Session["state"].ToString());
Dropdownlist2.databind();
Dropdownlist1.databind();
于 2012-08-23T09:30:59.597 回答
1
DropDownList1.Items.Add(new ListItem(Session["country"].ToString()); 
DropDownList2.Items.Add(new ListItem(Session["state"].ToString());
于 2012-08-23T09:13:45.847 回答
0

试试这样

   DropDownList1.Items.Add("yourvalue");
   DropDownList1.Items.Add(Session["country"].ToString());
于 2012-08-23T09:31:07.690 回答
0

试试这个代码:

DropDownList1.Items.Insert(0, new ListItem(Session["country"].ToString(), "0"));
DropDownList1.DataBind();

DropDownList2.Items.Insert(0, new ListItem(Session["state"].ToString(), "0"));
DropDownList2.DataBind();
于 2012-08-23T09:34:30.557 回答
0

使用会话有什么需要..?而是尝试这个..希望它有效。在这行代码 (dt1 = bll.getnewid(TextBox1.Text);) 之后使用这两行而不是会话。

DropDownList1.DataSource=dt1;
DropDownList1.DataTextField="Country";
DropDownList1.DataValueField="Country";
DropDownList1.DataBind();
DropDownList2.DataSource=dt1;
DropDownList2.DataValueField="Country";
DropDownList2.DataValueField="Country";
DropDownList2.DataBind();
于 2012-08-23T09:35:04.280 回答
0

您需要设置下拉列表的SelectedValueorSelectedIndex属性。

于 2012-08-23T09:13:33.903 回答