protected void B1_Click1(object sender, EventArgs e) { anatablo b1 = new anatablo(); if (Text1.Text == "" || Text2.Text == "") { MessageBox.Show("Bütün verileri eksiksiz girmelisiniz."); } else { if (b1.kullaniciDogrula(Text1.Text, Text2.Text)) { Session["Kullanici_Adi"] = Text1.Text; Session.Timeout = 20; if (b1.Kargocumu(Text1.Text)) { //MessageBox.Show("Bu sayfaya erişim yetkiniz bulunmamaktadır.."); Response.Redirect("KargoIslemleri.aspx"); } else { Response.Redirect("PersonelIslemleri.aspx"); } } else { MessageBox.Show("Kullanıcı adı veya şifreniz geçersiz."); } } }
protected void Page_Load(object sender, EventArgs e) { anatablo b1 = new anatablo(); if (Session["Kullanici_Adi"] == "" || Session["Kullanici_Adi"] == null) { Response.Redirect("Login.aspx"); } else if (Session["Kullanici_Adi"] != "" && Session["Kullanici_Adi"] != null) { string username = Session["Kullanici_Adi"].ToString(); if (b1.Kargocumu(username)) { Response.Redirect("KargoIslemleri.aspx"); } else { Response.Redirect("KargoIslemleri.aspx"); } } }