protected void Page_Load(object sender, EventArgs e)
 {
     DataSet1TableAdapters.TBL_OGRETMENTableAdapter dt = new DataSet1TableAdapters.TBL_OGRETMENTableAdapter();
     DropDownList1.DataSource     = dt.OgretmenListesi();
     DropDownList1.DataTextField  = "OGRTADSOYAD";
     DropDownList1.DataValueField = "OGRTID";
     DropDownList1.DataBind();
 }
Beispiel #2
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (Page.IsPostBack == false)
     {
         DataSet1TableAdapters.TBL_OGRETMENTableAdapter dt = new DataSet1TableAdapters.TBL_OGRETMENTableAdapter();
         DropDownList1.DataSource     = dt.OgretmenListesi();
         DropDownList1.DataTextField  = "OGRTADSOYAD"; //Kullanıcıya gözükecek olan alanın ismi
         DropDownList1.DataValueField = "OGRTID";      //Arkaplan yani seçilen öğretmenin arkaplanda id sini alsın.
         DropDownList1.DataBind();
     }
 }