Gregory,
> When debugging is turned on, any execution of a Cold Fusion page > produces parameters which contain 'Form Fields' and 'CGI Variable' > information. > I have certain directories that are set with 'Integrated Windows > Authentication'. When these directories are accessed, the 'AUTH_USER' > and 'REMOTE_USER' variables display the person accessing the > directories. I need to get this information when a page in the directory > is accessed. I have looked through most of the Cold Fusion documentation > and can not find a way to access any of these variables. > I could use ASP programing (<% =Request.ServerVariables(name) %>) and > get the information, but I would rather use Cold Fusion. If anyone can > help, I would be most appreciative. An example would also help get me on > track. > You've answered your own question mate. ;o) Form variables are accessed using the prefix FORM. and CGI variables are accessed using the prefix CGI. So FORM.MyVariable would return the contents of the input field "MyVariable" from a form submission and CGI.Auth_User and CGI.Remote_User will return the contents of those variables. Regards Stephen ______________________________________________________________________ Get the mailserver that powers this list at http://www.coolfusion.com ------------------------------------------------------------------------------ To unsubscribe, send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body or visit the list page at www.houseoffusion.com
