Ejemplo n.º 1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (Convert.ToBoolean(Session["giris"]) != true)
     {
         Response.Redirect("LoginRegisterPage.aspx?msg=Oncelikle giris yapmalisiniz");
     }
     else
     {
         if (!IsPostBack)
         {
             DataSet Yazarcek = Islemler.YazarlarıCek();
             DropDownList1.DataTextField  = "YazarAdiSoyadi";
             DropDownList1.DataValueField = "YazarAdiSoyadi";
             DropDownList1.DataSource     = Yazarcek.Tables[0];
             DropDownList1.DataBind();
         }
     }
 }