Page Naming

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

Is there a dynamic way to name pages using a paramete that is selected. In
other words having the page reference name that is used while designing but
when viewed on the web as a stand alone page the named parameter becomes
part of the name.

e.g. Walt Disney .......................while designing
but when peter pan is selceted as a parameter the page displays the name

Peter Pan - Walt Disney
Thanks you
Chris
 
One solution using server side scripting:
Example using ASP, In the head section write the <title> tag as
<title><%=request.querystring("parameterName")%> - Walt Disney</title>

The page is linked to as <a
href="pagename.asp?parameterName=Peter+Pan">Peter Pan</a>
 
Back
Top