ASP Use Variables

Use Variables

<html>
<body>

<%
dim name
name="John Smith"
response.write("My name is: " & name)
%>

</body>
</html>