<!DOCTYPE html>
<html>
<head>
<title>Crea una variable en ASP y cambia su valor</title>
<body style="font-family: Arial; font-size: 11pt">
<%
Dim nombre
nombre="Mickey Mouse"
response.write("Mi nombre es: " & nombre)
%>
<p>Crea una variable y la añade a un texto</p>
</body>
</html>