how to manage session in asp.net

Discussion in 'C#' started by seo-india, Aug 18, 2010.

  1. #1
    Dear sir tell me about session in asp.net, how to manage application in
     
    seo-india, Aug 18, 2010 IP
  2. ARD

    ARD Peon

    Messages:
    20
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    managing session is a big thing is web apps.. first u need to have learn... find some ebook.. there r lot of ebooks available like build web site using asp.net
     
    ARD, Aug 18, 2010 IP
  3. susasl

    susasl Active Member

    Messages:
    63
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    91
    #3
    Create Session

    Session["Text" + Session.SessionID]="ABC";

    Access Session Varable

    searchText = (string)Session["Text" + Session.SessionID];
     
    susasl, Aug 28, 2010 IP