<% Dim firstname firstname="Hege" response.write(firstname) response.write("
") firstname="Tove" response.write(firstname) %>

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.