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

About Bahadır Şahin

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.

0 comments:

Öne Çıkan Yayın

GridView da Seçili Satırı DetailsView da Göstermek

Merhaba arkadaşlar bu makalemizde GridView nesnesi ile birlikte DetailsView nesanesini birlikte kullanacağız. GridView da seçili satırın de...