Hola a todos tengo un problema con un dropdownlist
en mi codigo lo lleno de la siguiente manera:
string query = "SELECT [sk_c1], [description] FROM [SK_C1]";
SqlCommand sqlCommand = new SqlCommand(query, objConn);
SqlDataAdapter sqlDataAdapter = new SqlDataAdapter(sqlCommand.CommandText, objConn);
DataSet ds = new DataSet();
sqlDataAdapter.Fill(ds);
this.ddr_technology.DataSource = ds;
this.ddr_technology.DataValueField = "sk_c1";
this.ddr_technology.DataTextField = "description";
this.ddr_technology.DataBind();
this.ddr_technology.Items.Insert(0, new ListItem("Select Technology", "0"));
y hasta ahi hace todo como yo keria, sin embargo al hacer lo siguiente:
ddr_technology.Text o ddr_technology.Value me devuelve el valor 0 y el texto Select Technology. logre obtener el Value con un Request.Form pero necesito tambien el texto....y al hacer el postback del mismo regresa a su posicion 0, osea seleccione tecnologia.....alguien podria ayudarme xfavorr