<!DOCTYPE html> <html> <head> <title>Crea una variable en ASP y cambia su valor</title> <body style="font-family: Arial; font-size: 11pt"> <% Dim firstname firstname="Pepe" response.write(firstname) response.write("<br>") firstname="Manolito" response.write(firstname) %> <p>Crea una variable y la escribe, luego cambia su valor y la vuelve a mostrar en pantalla</p> </body> </html>