Navigation: thinBasic language > Script structure > Pre Parsing directives > #INCLUDE > #INCLUDE "Includes\Footer.inc" |
|
'-------------------------------------------------------------------------
' Write page footer
'-------------------------------------------------------------------------
Function Page_Footer(T0 As Long) As String
Dim sBuffer As String
sBuffer = sBuffer & "<div id='footnav'>Script execution time: " & _
FORMAT$(TIMER - T0, "#0.00000") & "</div>"
sBuffer = sBuffer & "<div id='pagefooter'><a href='" & APP_SourceName & _
"?showsource=true' title=''>Script source code</a></div>"
Function = sBuffer
End Function
© 2004-2008 thinBasic. All rights reserved. | Version 1.7.0.0 | Web Site: http://www.thinbasic.com |