Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
CFRAM #1
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
-
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... -
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... -
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... -
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... -
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... -
mattw #2
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
-
CFRAM #3
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



Reply With Quote

