please help me i am despered

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kapios123
    New Member
    • Feb 2007
    • 1

    please help me i am despered

    i am using asp.net and i want to make my second aspx web site to read the username variable and display it in the second form .... honestly i didnt find anything , i read books nothing .... i tryly need your help
  • vijaydiwakar
    Contributor
    • Feb 2007
    • 579

    #2
    Originally posted by kapios123
    i am using asp.net and i want to make my second aspx web site to read the username variable and display it in the second form .... honestly i didnt find anything , i read books nothing .... i tryly need your help

    dear use session veriable for that like
    session("Unm")= txtunm.text

    in first form then

    in second form use
    if session("Unm") is nothing then
    response.write (session("Unm") )
    end if

    k.............

    Comment

    • pagoto123
      New Member
      • Feb 2007
      • 14

      #3
      i did this and doesnt work ...... what else i can try i want a textbox to write in there the username of the one that is logged
      thanks for the try but it didnt work

      Comment

      • vijaydiwakar
        Contributor
        • Feb 2007
        • 579

        #4
        Originally posted by pagoto123
        i did this and doesnt work ...... what else i can try i want a textbox to write in there the username of the one that is logged
        thanks for the try but it didnt work
        see dear the session veriables are case sensative
        session("Unm")< >session("unm ")
        pls check it...
        b'coz session veriables are the best example to do so

        Comment

        Working...