Ver Mensaje Individual
  #2 (permalink)  
Antiguo 27/08/2009, 17:29
barclow
 
Fecha de Ingreso: agosto-2009
Mensajes: 21
Antigüedad: 15 años, 6 meses
Puntos: 0
Respuesta: IE no acepta el referrer...?

listo, lo solucioné!

Era muy simple:

en el código, cuando imprimo el form, me faltaba agregar el famoso method="post", quedó finalmente así:

Código PHP:
<html>
    <title>Redireccionando...</title>
    <body>
        <?php echo '<form name="form1" id="form1" action="' $url '"  method="post" >';
            echo 
'<input type="text" name="id" value="' $_SESSION["idusuarios"] . '" style="visibility:hidden" />';
            
?>
        </form>
    </body>
    <script type="text/javascript">
        document.form1.submit();
    </script>
</html>
y para recibir el parámentro en ASP simplemente hice un

Código:
String id = Request.Form["id"];
y el referer, en vez de usar

Código:
String referer = Request.UrlReferrer.PathandQuery;
uso:

Código:
String referer = Request.Params["HTTP_REFERER"];

Última edición por barclow; 27/08/2009 a las 17:30 Razón: Agregar tags