Thanks Imar for replying so swiftly.
At the moment I have a template entitled maintemplate.dwt.aspx and I have created a page from the template by going to File - New - and selecting the main template under soccersite. I noticed that when do save the document it seems to have the extension .asp on the end even though I try and save it as html.
Whats the best procedure to create a html file from the template?
ps please find attached the code from the template:
<%@ Page Language="
VB" ContentType="text/html" ResponseEncoding="iso-8859-1" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>GlobalSoccerEvents.com - Your Source for Soccer Events Around the Globe</title>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
<td><table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><a href="../home.asp" id="home">Home</a></td>
<td> </td>
<td><a href=".../events.asp" id="events">Events</a></td>
<td> </td>
<td><a href=".../mySite.asp" id="mysite">My Site</a></td>
</tr>
</table>
</td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><h2>-Page Title Here- </h2></td>
</tr>
<tr>
<td>-Page Content Here- </td>
</tr>
<tr>
<td><div align="center"><br>
<br>
<br>
<br>
<br>
<script language="javascript" type="text/javascript">
var sPageName = '<%=Request.ServerVariables("SCRIPT_NAME")%>';
sPageName = sPageName.substr(sPageName.lastIndexOf('/')
+ 1) .toLowerCase ();
sPageName = sPageName.substr(0, sPageName.lastIndexOf('.'));
if (document.getElementById(sPageName))
{
document.getElementById(sPageName).style.fontweigh t = 'bold';
document.getElementById(sPageName).style.fontSize = '14pt';
}
</script>
-Footer Here-</div></td>
</tr>
</table>
</body>
</html>