31
© Ecommerce Templates
Page 227 of 239
Now repeat this with each of the 3 files categories.asp, products.asp and
proddetail.asp
Now, on your categories.asp AND the products.asp pages you can change
the page title tag to something like this...
<title>Bob's widget store: <%
if topsection<>"" then response.write topsection & ", "
response.write sectionname%></title>
Also on the categories page, if you use a category description you might want
to set the meta description tag to this...
<META NAME="Description"
CONTENT="<%=Replace(sectiondescription,"""",""")%>">
The information available to the proddetail.asp page is slightly different. On
that page you can change your page title to...
<title>Bob's widget store: <%= productname & ", " & sectionname & ", " &
productid %></title>
You might not want to include the product ID, in which case you can use...
<title>Bob's widget store: <%= productname & ", " & sectionname %></title>
For the meta description on the proddetail.asp page you can use...
<META NAME="Description"
CONTENT="<%=Replace(productdescription,"""",""")%>">
Multiple language set up
If you are using the multiple language set up then you will need these include
lines before the <html> tag:
<!--#include file="vsadmin/db_conn_open.asp"-->
<!--#include file="vsadmin/inc/languagefile.asp"-->
<!--#include file="vsadmin/includes.asp"-->
<!--#include file="vsadmin/inc/incfunctions.asp"-->
<!--#include file="vsadmin/inc/metainfo.asp"-->
...making sure they are not duplicated later in the code.