Cookie Oluşturma
default.aspx ve login.aspx şeklinde iki sayfamız olsun. login.aspx sayfasından giriş yapan kullanıcının bilgisayarına cookie (çerez) oluşturacağız.
Aşağıdaki şekilleri inceleyin.
Şekil 1
Şekil 2
login.aspx.cs ye
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class login : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
try
{
HttpCookie Cookie = new HttpCookie("bahadir");
// Formdan Gelen bilgiyi yazdırıyoruz.
// Burada Kullanıcı Giriş yaptığınız var sayarak kuulaniciadi cookie yazdırıyoruz.
Cookie["kullaniciadi"] = txtAd.Text;
// Cookienin Bitiş Süresi.
Cookie.Expires = DateTime.Now.AddDays(30);
// Cookieyi Gönder.
Response.Cookies.Add(Cookie);
}
catch (Exception)
{
Response.Write("hata oluştu...");
}
}
}
Default.aspx.cs ye
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
// Burada Cookieyi Alıyoruz.
HttpCookie Cookie = Request.Cookies["bahadir"];
// Cookiedeki Değeri Yazdırıyoruz...
Response.Write("Sayın: " + Cookie["kullaniciadi"] + " tekrar sitemize hoşgeldiniz...");
}
}
yazalım.
Böylece bir makalenin daha sonuna geldik. Bir sonraki makalede görüşünceye kadar. Hoşçakalın.
Bahadır ŞAHİN