Session Okuma ve Yazma İşlemleri

Merhaba arkadaşlar. Yeni bir makalede yine birlikteyiz. Bu makalemizde Session konusunu inceleyeceğiz. Session a ilk önce yazıp, yine daha sonra session nesnesinden okuyacağız. Web sayfanıza 1 adet TextBox,2 adet Button ve 1 adet ListBox nesnesi ekleyin. (Şekil 1)




Şekil 1

Şekil 2 deki gibi TextBox a yazdığımız değeri Session a Yaz butonuna basarak session a almış oluyoruz. Atanan session değerini görmek için Session Oku butonuna basınız.



Şekil 2



Şekil 3

Default.aspx.cs


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)

{

}

protected void btnYaz_Click(object sender, EventArgs e)

{

Session["durum"] = TextBox1.Text;

this.ListBox1.Items.Add("");

this.ListBox1.Items.Add("Session Değeri Yenilendi");

this.ListBox1.Items.Add("Session'ın yeni değeri :" +

Session["durum"].ToString());

}

protected void btnOku_Click(object sender, EventArgs e)

{

if (Session["durum"] == null)

{

this.ListBox1.Items.Add("");

this.ListBox1.Items.Add("Session Boş");

this.ListBox1.Items.Add("Bir Değer Giriniz");

}

else

{

this.ListBox1.Items.Add("");

this.ListBox1.Items.Add("Deger: " + Session["durum"].ToString());

}

}

}


Bir makalenin daha sonuna geldik. Bir sonraki makalede görüşmek dileğiyle. 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...