utilice e código siguiente,
Código Javascript:
Ver original
<script language="javascript"> function EscribeParaPadre() { try { var varTexto01 = window.opener.document.getElementById("TextBox13"); var varTexto02 = window.opener.document.getElementById("TextBox2"); if (varTexto01) varTexto01.value = document.getElementById('tbrut').value; if (varTexto02) varTexto02.value = document.getElementById('tbdetalle').value; //self.close(); } catch (ex) { alert(ex.message); } } </script>
Código HTML:
Ver original
el cual funciona bien cuando las paginas no utilizan masterPage.
al popup lo llamo con el siguiente código en asp.net.
Código ASP:
favor de ayudarme, nose como devolver desde un popup un valor a un fomulario que utiliza masterpage (../packingmatentexit/matentexit.aspx)Ver original
string url = "../searchform/searchCustomersSuppliers.aspx"; string script = "window.open('" + url + "','','width = 645px height = 440px')"; if (!ClientScript.IsClientScriptBlockRegistered("NewWindow")) { ClientScript.RegisterClientScriptBlock(this.GetType(), "NewWindow", script, true); }
de ante mano gracias. .