Thread: Header for ASP
View Single Post
  #2  
Old 08-29-2006, 02:45 PM
bizzare bizzare is offline
OSP Starters
 
Join Date: Jun 2006
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
bizzare is on a distinguished road
Default

Why not write a function? Or two for that matter?

PHP Code:
<%
' Of course your headers can be a little more detailed.
Function makeHeader(title)
response.write "<html><head><title>" & title & "</title></head><body>"
end function

function makefooter()
response.write "</body></html>"
End function
%>
' Now on all your pages
<% makeHeader "Page Title " %>

Content
....
....
....
end content

<% makefooter() %> -- This message may have been cut off and the rest will only be shown to members. To become a member, click here --
Reply With Quote
  Webmaster Forums - View Single Post - Header for ASP
Thread: Header for ASP
View Single Post
  #2  
Old 08-29-2006, 02:45 PM
bizzare bizzare is offline
OSP Starters
 
Join Date: Jun 2006
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
bizzare is on a distinguished road
Default

Why not write a function? Or two for that matter?

PHP Code:
<%
' Of course your headers can be a little more detailed.
Function makeHeader(title)
response.write "<html><head><title>" & title & "</title></head><body>"
end function

function makefooter()
response.write "</body></html>"
End function
%>
' Now on all your pages
<% makeHeader "Page Title " %>

Content
....
....
....
end content

<% makefooter() %> -- This message may have been cut off and the rest will only be shown to members. To become a member, click here --
Reply With Quote