Ver Mensaje Individual
  #5 (permalink)  
Antiguo 10/02/2004, 14:40
Avatar de PMP
PMP
 
Fecha de Ingreso: febrero-2003
Ubicación: Chacabuco - Buenos Aires
Mensajes: 214
Antigüedad: 22 años, 2 meses
Puntos: 1
Tienes acceso al servidor o utilizas el servicio de hosting?
Sino prueba esto:

<form action="<%=Request.ServerVariables("SCRIPT_NAME")% >" method="post" >
<input name="txtNro" type="text"><input name="" type="submit">
</form>

<%
If Request.Form("txtNro") <> "" then
varNro = Request.Form("txtNro")
varNro = Replace(varNro , ".", ",")
varNro = CSng(varNro)
response.Write(varNro)
end if
%>


Espero te sirva.

Saludos.