> I see... well, you have me the one I wanted.. I just need to
> check if the person viewing the page is dialed up through our
> server, hence in our local IP range. Now.. is there a
> possibility that the #cgi.remote_addr# does not work with all
> browsers? If so, should I just do a <cfif #IsDefined(cgi.remote_addr)#> ??

That variable is provided by the server, not the browser, and is pretty
standard across servers. In any case, IsDefined doesn't work too well with
CGI variables. If you reference a non-existent CGI variable, you'll get an
empty string instead of an error.

The CGI variables that begin with "HTTP_" are returned by the browser.
Others are either generated by the server itself, or created by the server's
parsing of the HTTP request.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to