C# İle Veri Tabanına Bağlanma Ve Sayfaya Giriş Yapma Kodudur.Giriş Başarılı Olduğunda Yani Veri Tabanında İlgili Kayıt Bulunuyorsa ("Giris_Basarili.Aspx") Sayfasına Girer...Bu Sayfayı Kendi Giriş Sayfanıza Göre De Değiştirebilirsiniz...
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Data.OleDb;
using System.Web.UI.WebControls;
public partial class editor_girisi : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
OleDbConnection baglanti = new OleDbConnection("Provider=Microsoft.Jet.Oledb.4.0;Data Source=" + Server.MapPath("..\\App_Data\\uyeler.mdb"));
OleDbCommand arama = new OleDbCommand("SELECT * FROM kullanici WHERE K_Adi=@KullaniciAdi AND Parola=@sifre", baglanti);
arama.Parameters.Add("@KullaniciAdi", OleDbType.VarChar).Value = TextBox1.Text;
arama.Parameters.Add("@sifre", OleDbType.VarChar).Value = TextBox2.Text;
baglanti.Open();
OleDbDataReader oku = arama.ExecuteReader();
if (oku.Read())
{
Session["UyeID"] = oku["Uye_ID"].ToString();
Session["AdiSoyadi"] = oku["adi"].ToString() + " " + oku["soyadi"].ToString();
Response.Redirect("giris_basarili.aspx");
}
else
{
Label1.Text = "**HATA!..Böyle Bir Kullanıcı KAYITLI DEĞİLDİR!...**";
}
}
}