예제 #1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (Convert.ToBoolean(Session["giris"]) != true)
            {
                Response.Redirect("Giris.aspx?msg=Oncelikle giris yapmalisiniz");
            }

            else
            {
                if (!IsPostBack)
                {
                    DataSet yazarlar = DBİslemler.Yazarlaricek();
                    DropDownList1.DataTextField  = "Ad";
                    DropDownList1.DataValueField = "YazarID";
                    DropDownList1.DataSource     = yazarlar.Tables[0];
                    DropDownList1.DataBind();
                }
            }
        }