any references document
views:
45answers:
1
+5
A:
Here's how:
http://www.webreference.com/js/tutorial1/opener.html
You'll have full access to any javascript methods in the parent opener simply by using
window.opener.myFunction(params);
Clarity EDIT:
window.opener.document.getElementById('myLabel').value = 'some text';
Joel Etherton
2010-01-20 01:53:49
Remember about ASP.Net's name mangling
SLaks
2010-01-20 02:00:52
Touche. Though there are several different ways to work around that. I'll wait for the next question on how to do that I suppose :)
Joel Etherton
2010-01-20 02:03:22
I am trying on that way , but i got the error
drop
2010-01-20 03:26:03
What error? I know this works because I have a production website which does it.
Joel Etherton
2010-01-20 03:42:40