Here is my code:
function show()
{
var parameters = new Object();
parameters.F1MBFC = 'N';
parameters.F1MCSI = 'N';
parameters.F1MMCY = 'N';
parameters.F1NACD = 'B';
parameters.F1RVCR = 'N';
parameters.SOURCEFILED = '_fld:FACILITY7';
showPopWin('http://mysite/popupForm.aspx', 650, 450, null);
}
How i can pass as parameter in url the object parameters?
Any ideas?
If you’re actually opening the window yourself with JavaScript, then:
Then in the code for the other page:
You can also access the caller (depending on the browse probably) via the
window.openerproperty. I may have got something slightly wrong but you get the general idea.