passing values JavaScript/VBScript

A

aljamala

Hi,

I have a page, which adds on a value to the query string on the client
side before redirecting the user...

function popcalc( url, pagename, w, h) {
var urllink = url + "famount=" + document.form1.finance_total.value;
popup(urllink, pagename, w, h);
}

function popup( url, pagename, w, h) {
var pupwindow = null;
toptions =
"menubar=no,toolbar=no,directories=no,status=no,copyhistory=no,resizable=no,scrollbars=yes,width="
+ w + ",height=" + h;
pupwindow = window.open( url, pagename, toptions);
if (pupwindow != null) {
if (pupwindow.opener == null) {
pupwindow.opener = self;
}
//pupwindow.location.href = url;
}
}

My task is encrypt the query string, through the use of a VBScript
function on the server side. So, I have tried finding a work around to
this problem. I've tried using cookies, but I do not get the same
behaviour with the popup window.

Thanks for your help.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,776
Messages
2,569,603
Members
45,189
Latest member
CryptoTaxSoftware

Latest Threads

Top