Advertisement
p0larb3er

Untitled

Mar 11th, 2016
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <cfinclude template="../templates/common_variables.cfm">
  2. <cfinclude template="../templates/user_login_check.cfm">
  3. <!---First Build--->
  4.  
  5. <cfif StructKeyExists(url, 'FT') and StructKeyExists(url, 'FTN')>
  6.  
  7.  
  8.  
  9. <!--- This pulls the rows from the table doccontfile that meet any arguments listed below --->
  10.         <cfinvoke
  11.             component="database.components.doc"
  12.             method="files"
  13.             returnvariable="files">
  14.             <cfinvokeargument name="FT" value="#url.FT#"/>
  15.             <cfinvokeargument name="FTN" value="#url.FTN#"/>
  16.         </cfinvoke>
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27. <!DOCTYPE html>
  28. <html>
  29.  
  30.  
  31. <head>
  32.   <Title>Document Control</title>
  33.  
  34.     <!--- Style sheets--->
  35.    
  36.     <link rel=stylesheet href="../stylesheets/database_ss_2012.css?v=<?=time();?>" type="text/css">
  37.  
  38.  
  39.     <link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'> <!--- GOOGLE OPEN SANS FONT API--->
  40.  
  41. </head>
  42.  
  43.  
  44. <body>
  45.     <cfoutput query="files">
  46.             #files.idDocContFiles#
  47.     </cfoutput>
  48. </body>
  49. </html>
  50.  
  51.  
  52.  
  53.  
  54.  
  55.         <cfelse>
  56.             You have accessed this page incorectly please try again!
  57.         </cfif>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement