home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 139 / dpcs0999.iso / Web / CFserver / data1.cab / Administrator / adminsettings.cfm (.txt) < prev    next >
Encoding:
ColdFusion Encrypted Template  |  1999-04-12  |  919 b   |  19 lines

  1. <!-------------------------------------------------------------
  2.     Display page requested in the GoToPage parameter. If not
  3.     provided go to the most recently used page store in the 
  4.     Client.AdminPage variable. If none of these variables
  5.     exists, initialize the Client variable.
  6. --------------------------------------------------------------->
  7.  
  8. <CFIF ParameterExists(GoToPage)>
  9.     <CFSET #Client.AdminPage# = #GoToPage#>
  10. <CFELSE>
  11.     <CFPARAM NAME="Client.AdminPage" DEFAULT="#DefaultAdminPage#">
  12. </CFIF>
  13.  
  14. <!-------------------------------------------------------------
  15.     The AdminPage client variable should be initialized by now. 
  16.     Include the appropriate page.
  17. --------------------------------------------------------------->
  18. <CFLOCATION URL="#Client.AdminPage#">
  19.