Junior Onur UNURLU

ASP DE BIR CEREZ ICIN ALT DEGISKENLER OLUSTURMAK

ASP de Bir cerez icin Alt Degiskenler Olusturmak Hakkında;

Önce Bu kodları Yazalım;
<% Response.Cookies(”uye”)(”ad”) = ”Onur” Response.Cookies(”uye”)(”soyad”) = ”UNURLU” Response.Cookies(”uye”)(”ulke”) = ”Türkiye” Response.Cookies(”uye”)(”yas”) = ”32” %>


Şimdi Yukarıdaki kodları silelim ve aşağıdaki kodları yazalım;
Bilgisayarın Kaydettiği Tüm Çerezleri Altları ile birlikte Görmek için;

<% For Each x in Request.Cookies Response.write(”

”) if Request.Cookies(x).HasKeys then For each y in Request.Cookies(x) Response.write(x & ”:” & y & ”=” & Request.Cookies(x)(y)) Response.write(” ”) Next Else Response.Write(x & ”=” & Request.Cookies(x) & ”
”) End if response.write ” ” next %>

Facebook

   SON EKLENEN 6 LİNK