13/01/2011, 07:51
|
| | | Fecha de Ingreso: diciembre-2006
Mensajes: 285
Antigüedad: 17 años, 11 meses Puntos: 8 | |
Respuesta: anidar DropDownList bien, debes usar el evento SelectIndexChange correspondiente al DropDownList1 que ya tienes lleno (lo que significa que cuando el usuario seleccione un item tu te enteras), ahora en ese evento puedes volver hacer lo mismo para llenar el nuevo dopdownlist2 y especificar la condicion requerida:
{
string sql = "select * from TU_TABLA where IdUnidadServicio = " + this.DropDownList1.SelectedValue;
SqlConnection conection = new SqlConnection(connString);
SqlDataAdapter p = new SqlDataAdapter(sql, conection);
DataSet ds = new DataSet();
p.Fill(ds);
this.DropDownList2.DataSource = ds.Tables[0];
this.DropDownList2.DataMember = "descripcion";
this.DropDownList2.DataTextField = "descripcion";
this.DropDownList2.DataValueField = "unidadservicioid";
this.DropDownList2.DataBind();
}
Saludos, espero comprendas la idea.
__________________ -= El conocimiento y el saber te hacen un ser libre =- Ando en busca de conocimiento.... |