![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
30/09/2009, 10:03
|
| | Fecha de Ingreso: septiembre-2009
Mensajes: 111
Antigüedad: 15 años, 5 meses Puntos: 3 | |
Respuesta: Actualizando propiedades de pagina padre desde pagina hija Saludos,, Intenta agregar esta linea dentro del <head>en el archivo "HIJA.aspx":
<head> <base target="_self" />
...
</head>
y verifica que sobre el archivo "PADRE.aspx" en el <SCRIPT> se encuentre:
<script type = type="text/javascript">
function abrir_Hija()
{
// ...EL CODIGO PARA ABRIR TU VENTANA window.showModalDialog(pagina,"Hija",Width = "[x]", Height="[y]");
document.forms[0].submit();
}
Avisame si te funcionó
</script> |