<!--- ---------------------------------------------------------------- ---- File: securepage.cfm Author: Ben Nadel Desc: This tag allows a page to be given a login without integrating it with the security of the application itself. This is good for single pages or mini-extranets that the client wants to post to. Sample Code: <!-- Import tag library. --> <cfimport taglib="../lib/" prefix="sys" /> <!-- Secure page. --> <sys:securepage username="ben" password="test"> .... Code to be secured goes here .... </sys:securepage> Update History: 11/16/2005 - Ben Nadel Added piggyback functionality to allow one secure page to use the login status of another template. 11/14/2005 - Ben Nadel Beta tag has been completed. ----- ------------------------------------------------------------//// --->