Hi,
Below is a function in my aspx page called Parent.aspx.I'm calling it on click event of a button on this page.
function fnParentFrmSubmit()
{
document.body.insertAdjacentHTML("beforebegin","");
document.Form1.submit();
}
...And the below function is in another page called Child.aspx which I'm calling on Page_Load event
function fnChildWinLoad()
{
alert(window.opener.document.forms[0].txtBox.value)
}
When the user clicks on the submit button,I am submitting the form thru' client side javascript and then in the code behind
of this page,I am opening a Child.aspx using Response.write("


LinkBack URL
About LinkBacks



















































