简体   繁体   中英

sd display the details of selected item in the dropdown list from database

This is the code i have written to display the details of employee selected from the drop down list into textboxes. I didn't get any error but the details are not getting displayed in the textboxes...

protected void  dlstemps_SelectedIndexChanged(object sender, EventArgs e)
{
    int empno=Convert.ToInt32(dlstemps.SelectedItem.Value);

    SqlConnection con = new SqlConnection();
    con.ConnectionString=constr;
    SqlCommand cmd=new SqlCommand();
    cmd.CommandText = "select * from emp where empno="+empno;
    cmd.Connection = con;
    SqlDataReader reader;
    try
    {
        con.Open();
        reader = cmd.ExecuteReader();
        reader.Read();
            txtempno.Text = reader["empno"].ToString();
            txtename.Text = reader["ename"].ToString();
            txtsal.Text = reader["sal"].ToString();
            txtdeptno.Text = reader["deptno"].ToString();
            txtadress.Text = reader["adress"].ToString();
       reader.Close();
    }
    catch(Exception er)
    {
        lblerror.Text=er.Message;
    }
    finally
    {
        con.Close();
    }
}

I don't understand what went wrong in this code.... Please help me to fix it.

Dropdownlist databinding

  • check whether databinding of dropdownlist employees dlstemps is done inside !Page.IsPostBack if block.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM