Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Hide Address Bar

    Please help me here.

    I search the web, but I could not find any code to hide the IE Browser Address
    Bar or Disable it. Similarly with the Back button.
    Another issue is to prevent users from copy pasting url link to access the
    application.

    Thanks in Advance
    CFRAM

    CFRAM Guest

  2. Similar Questions and Discussions

    1. Hide email address from spiders etc.
      Anyone know the best way to hide the email addresses I post on my site from spiders? I've been getting lots of complaints. I was thinking of...
    2. How do I hide my E-mail address
      I am creating a web site for my work, a community garden. I do not want my e-mail right out there, so I was thinking of making it an icon that you...
    3. Hide your e-mail address
      I strongly advise that all of you (it's too late for me) hide your e-mail address before posting to this or any other forum!!! Otherwise you'll be...
    4. Best Method To Hide Email Address From Web Spiders On A Webpage?
      In article <m28cgvgjfq7b5a41vl6fcvfdc6k8k8v4nr@4ax.com>, ChocoFlakes <choco@flakes.com> wrote: 3 things you can try. Create a graphics file...
    5. Best Way To Hide An Email Address On A Web Page From Web Spiders?
      In article <nf8cgv03r241bt0f1asdok5s6u9e0716eo@4ax.com>, ChocoFlakes <choco@flakes.com> wrote: what i've seen some people do is put the email...
  3. #2

    Default Re: Hide Address Bar

    This is straight from Dreamweaver's snippets. I believe the location=no is the
    part that does the trick.

    var popUpWin=0;
    function popUpWindow(URLStr, left, top, width, height)
    {
    if(popUpWin)
    {
    if(!popUpWin.closed) popUpWin.close();
    }
    popUpWin = open(URLStr, 'popUpWin',
    'toolbar=no,location=no,directories=no,status=no,m enubar=no,scrollbars=no,resiza
    ble=no,copyhistory=yes,width='+width+',height='+he ight+',left='+left+',
    top='+top+',screenX='+left+',screenY='+top+'');
    }

    mattw Guest

  4. #3

    Default Re: Hide Address Bar

    Thanks for the code. I was wondering if I can open Index.cfm in the same way. The URLStr will be the CGI.script_name Right ??
    CFRAM 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