Estoy aprendiendo asp
instale el iis en mi pc y empece a programar con ejemplos, como el sig.
pagina1.htm
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Pagina1.htm</title>
</head>
<body>
<form action="pagina1.asp" method="post">
Ingresar un valor entre 1 y 1000<br>
<input type="text" name="valor"><br>
<input type="submit" value="calcular"><br>
</form>
</body>
</html>
mi pagina asp: pagina1.asp
<%option explicit%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>pagina1.asp</title>
</head>
<body>
<%
dim v
v=request.form ("valor")
if v<10 then
response.write ("Tiene un Digito")
else
if v<100 then
response.write ("Tiene dos Digitos")
else
if v<1000 then
response.write ("Tiene tres Digitos")
end if
end if
end if
%>
</body>
</html>
este ejemplo lo hice la semana pasada y corria perfectamente, pero hoy fui a probarlo y a seguri con mi aprendizaje y ya no corria, no le pasaba los valores


buscando y buscando por internet encontre otr forma de pasarle parametros de un forma un asp y realice las odificaciones sigueintes cambien el metodo post por get en la pagina htm.
pagina1.htm
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Pagina1.htm</title>
</head>
<body>
<form action="pagina1.asp" method="post">
Ingresar un valor entre 1 y 1000<br>
<input type="text" name="valor"><br>
<input type="submit" value="calcular"><br>
</form>
</body>
</html>
y mi pagina asp tambien lo cambie el request.form por request.querystring y quedo asi
<%option explicit%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>pagina1.asp</title>
</head>
<body>
<%
dim v
v=request.Querystring("valor")
if v<10 then
response.write ("Tiene un Digito")
else
if v<100 then
response.write ("Tiene dos Digitos")
else
if v<1000 then
response.write ("Tiene tres Digitos")
end if
end if
end if
%>
</body>
</html>
y oh... le paso los valores y realizo la comprobacion, pero antes me resultaba de otra forma tengo el ie 8, no he hecho ninguna actualizacion, alguien me podria decir porfavor que cosa es lo que ah pasado? o es una brujeria de mi ex?

yo llamo a mis paginas de la sig. manera:
http://localhost/mi_web/pagina1.asp
y siempre me corria
GRacias