Returning val from child window
-
Hi guys I am opening a window thru javascript and i need to store and use some value in asp.net codebehind returned by the newly opened window. Code i m using 2 open window is -
window.showModalDialog('http://localhost/solution/child.aspx',null,'status:no;dialogWidth:350px;dialogHeight:590px;dialogHide:true;help:no;scroll:no');
its urgent guys, plz help Hope i m clear, any help will be highly appreciated Thanks and regards UTSAV -
Hi guys I am opening a window thru javascript and i need to store and use some value in asp.net codebehind returned by the newly opened window. Code i m using 2 open window is -
window.showModalDialog('http://localhost/solution/child.aspx',null,'status:no;dialogWidth:350px;dialogHeight:590px;dialogHide:true;help:no;scroll:no');
its urgent guys, plz help Hope i m clear, any help will be highly appreciated Thanks and regards UTSAVWhat about using Session["whatever"] = MyValue; Cheers Al