Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <cfinclude template="../templates/common_variables.cfm">
- <cfinclude template="../templates/user_login_check.cfm">
- <!---First Build--->
- <cfif StructKeyExists(url, 'FT') and StructKeyExists(url, 'FTN')>
- <!--- This pulls the rows from the table doccontfile that meet any arguments listed below --->
- <cfinvoke
- component="database.components.doc"
- method="files"
- returnvariable="files">
- <cfinvokeargument name="FT" value="#url.FT#"/>
- <cfinvokeargument name="FTN" value="#url.FTN#"/>
- </cfinvoke>
- <!DOCTYPE html>
- <html>
- <head>
- <Title>Document Control</title>
- <!--- Style sheets--->
- <link rel=stylesheet href="../stylesheets/database_ss_2012.css?v=<?=time();?>" type="text/css">
- <link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'> <!--- GOOGLE OPEN SANS FONT API--->
- </head>
- <body>
- <cfoutput query="files">
- #files.idDocContFiles#
- </cfoutput>
- </body>
- </html>
- <cfelse>
- You have accessed this page incorectly please try again!
- </cfif>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement