En la caja introduciría la dirección normal de un vídeo de youtube (http://www.youtube.com/watch?v=gIhlxhEO52k), guardaría la dirección en la variable enlace, y ahora querría integrar esa variable en el código html embed de youtube pero no me pinta la caja.
Alguién puede exarme una mano??¿?

Muchas gracias
Código:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
</head>
<body>
<form action="youtube.asp" method=post>
<input type=text name=caja size="80">
<input type=submit value="Crear">
</form>
<%
if request.form("caja")="" then
response.write("Debe introducir una dirección de Youtube")
else
enlace=request.form("caja")
'response.write(enlace)
%>
<param name="movie" value="<%=enlace%>"></param><param name="allowFullScreen"
value="true"></param><embed src="<%=enlace%>" type="application/x-shockwave-flash"
allowfullscreen="true" width="425" height="344"></embed>
<%
end if
%>
</body>
</html>

