protected void Page_Load(object sender, EventArgs e)
    {
        //RepeaterStajyerlerListele.DataSource = kod.GetDataTable("SELECT * FROM kurum WHERE kurum_kodu in (select kurum_kodu from stajyer where sicil_no = '" + labelSicilNo.Text + "')");

        RepeaterStajyerlerListele.DataSource = kod.GetDataTable("SELECT * FROM stajyer where sicil_no = '" + Request.QueryString["sicil"].ToString() + "'");
        RepeaterStajyerlerListele.DataBind();
    }
 protected void Page_Load(object sender, EventArgs e)
 {
     RepeaterStajyerlerListele.DataSource = kod.GetDataTable("SELECT * FROM stajyer where kurum_kodu = '" + Request.QueryString["kurumkod"].ToString() + "'");
     RepeaterStajyerlerListele.DataBind();
 }
Exemple #3
0
 protected void Page_Load(object sender, EventArgs e)
 {
     RepeaterStajyerlerListele.DataSource = kod.GetDataTable("SELECT * from ogrenci where sicil_no =" + Request.QueryString["sicil"]);
     RepeaterStajyerlerListele.DataBind();
 }