thankyou.asp
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<!-- #BeginTemplate "Templates/paradise-beach.dwt" -->

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- #BeginEditable "doctitle" -->
<title>The Club at Paradise Beach</title>
<!-- #EndEditable -->
<style type="text/css"></style>
<link rel="stylesheet" type="text/css" href="paradise.css" />
<!--[if lte IE 6.0]>
<style type="text/css">
#pb {
    background: url('images/pb-blue.gif') no-repeat:
}
</style>
<![endif]-->
<!-- #BeginEditable "head" -->
<%
'declare variables
Dim vname, email, comment, startdate, endate, roomtype
'fill insert variables
vname = request.form("vname")
email = request.form("email")
startdate = request.Form("startdate")
enddate = request.Form("enddate")
roomtype = request.Form("roomtype")
comment = request.Form("comment")
%>
<!-- #EndEditable -->

</head>

<body>

<div>
	<p id="masthead">
	<img alt="The Club at Paradise Beach" src="images/pb.gif" 
	width="405" height="125" id="pb" /></p>
</div>
<div id="menu">
	<ul>
		<li><a href="index.html">home</a></li>
		<li><a href="accomodations.html">accommodations</a></li>
		<li><a href="spa.html">spa</a></li>
		<li><a href="resource.html">activities</a></li>
		<li><a href="reservations.html">reservations</a></li>
	</ul>
</div>
<div class="featured">
	<!-- #BeginEditable "featured" -->
	<h2>Featured Staff</h2>
	<p>Mark had is celebrating his fifth year with Paradise Beach and is in 
	charge our all our fitness instructors. His favorite class is tai chi on the 
	beach.</p>
	<p>
	<img alt="Mark" src="images/mark.jpg" width="150" 
	height="187" /></p>
<!-- #EndEditable -->
</div>
<div id="content">
<!-- #BeginEditable "maincontent" -->
<h1>Thank You</h1>
<p>Your reservation Request sent and a response will be emailed to you at:</p>
<p>Name: <% = vname %><br />
  Email: <% = email %><br />
</p>
<p>With the regarding the following:</p>
<p>Dates:   <% = startdate %> to   <% = enddate %>
  <br />
  Room Type: <% = roomtype %>
</p>
<p> 
  <% = comment %>
</p>
<p>We will respond to your request within one business day.<!-- #EndEditable --></div>
	<div id="footer">© 2007 by-expression.com and Cheryl D Wise</div>

</body>

<!-- #EndTemplate -->

</html>