Delphi 2010 ve Delpi XE2 aynı pc üzerinde kullanımı!
Destek talebi(Lütfen oy verelim!)
Sitemiz üye alımına kapatılmıştır!
! CODEBANK 2012 !
İNDİRMEK&DETAYLI BİLGİ ALMAK İÇİN BURAYI TIKLAYINIZ.
0 Üye ve 1 Ziyaretçi konuyu incelemekte.
procedure TGlobal.Session_Start(sender: System.Object; e: EventArgs);begin Session.Add('UserId','*');end;
if Page.IsValid then begin Session['UserId'] := TBNick.Text; Response.Redirect('sayfam.aspx');end;
procedure TWebForm1.Page_Load(sender: System.Object; e: System.EventArgs);begin Label1.Text := Session['UserId'].ToString;end;
Page.Session['uye'] := 'cem';
if Assigned(Page.Session['uye']) then...
<!-- SESSION STATE SETTINGS By default ASP .NET uses cookies to identify which requests belong to a particular session. If cookies are not available, a session can be tracked by adding a session identifier to the URL. To disable cookies, set sessionState cookieless="true". --> <sessionState mode="InProc" stateConnectionString="tcpip=127.0.0.1:42424" sqlConnectionString="data source=127.0.0.1;user id=sa;password=" cookieless="false" timeout="20" />