<!DOCTYPE html>
<html>
<body>
<%
Dim firstname
firstname="Hege"
response.write(firstname)
response.write("<br>")
firstname="Tove"
response.write(firstname)
%>
<p>The script above declares a variable, assigns a value to it, and displays the value. Then, it changes the value, and displays the value again.</p>
</body>
</html>