| CFML Reference
|
|
ColdFusion Functions
|
GetBaseTemplatePath
Description
Returns the fully specified path of the base template.
Category
System functions
Syntax
GetBaseTemplatePath()
See also
GetCurrentTemplatePath, FileExists, ExpandPath
Example <!--- This example uses GetBaseTemplatePath to show
the template path of the current page --->
<html>
<head>
<title>
GetBaseTemplatePath Example
</title>
</head>
<body>
<H3>GetBaseTemplatePath Example</H3>
<P>The template path of the current page is:
<cfoutput>#GetBaseTemplatePath()#</cfoutput>
</body>
</html>
|
Copyright © 2001, Macromedia Inc. All rights reserved. |
|
|