Forum Moderators: phranque
<html>
<head>
<title>first asp</title>
</head>
<body>
<p>Your first name is<% = Response.wkfour("fname") %></p>
<p>Your last name is <% = Response.wkfour("lname") %></p>
<p>Your email is <% = Response.wkfour("email") %></p>
</body>
</html>
<html>
<head>
<title>first asp</title>
</head>
<body>
<p>Your first name is<% = Response.write wkfour("fname") %></p>
<p>Your last name is <% = Response.write wkfour("lname") %></p>
<p>Your email is <% = Response.write wkfour("email") %></p>
</body>
</html>
*correction*
Then again... In this case you can just drop the 'Response' all together:
<html>
<head>
<title>first asp</title>
</head>
<body>
<p>Your first name is<%= wkfour("fname") %></p>
<p>Your last name is <%= wkfour("lname") %></p>
<p>Your email is <%= wkfour("email") %></p>
</body>
</html>