Sign In/Sign Out like macromedia page

Ask a Question related to Coldfusion - Getting Started, Design and Development.

  1. #1

    Default Sign In/Sign Out like macromedia page

    I would like to add a sign in link that after you are signed in changes to sign out like on the top of the macromedia site. If anyone can help with this it would be very much appreciated.
    ajohn30@adelphia.net Guest

  2. Similar Questions and Discussions

    1. #39374 [NEW]: it add greater-than sign all page
      From: phunsanit at Hotmail dot com Operating system: win-xp PHP version: 5.2.0 PHP Bug Type: Output Control Bug description:...
    2. No + (plus sign)
      I am not new to web design in general however i am trying new skills for cold fusion. i have completed the first tutorial that comes with coldfusion...
    3. minus sign proportion to + sign in bold
      Does anyone know how to make a minus sign that is proportional to a plus sign (+) in bold in Freehand?
    4. Cant display a value that contains a + Sign
      Hi Im pulling out of my dbase a record nuber however when I response.write it I get strange results: Ie: r = RS1("recid") response.write r
    5. VPN Single-sign on?
      Single sign-on from VPN? We have an environment using a Nortel VPN login and want to be able to avoid a login for that user to an asp.net...
  3. #2

    Default Re: Sign In/Sign Out like macromedia page

    OK I am going to assume a few things as you haven't provided much info.

    Firslty, I assume in your Application.cfm you use cfparam to set a SESSION
    variable to default the user as not logged in. Secondly that when a user logs
    in you set this varaible to true? Well if this is true then all you need to do
    is the following:-

    <cfif SESSION.IsLoggedIn>
    Sign Out
    <cfelse>
    Sign In
    </cfif>

    Stressed_Simon Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139