How do you pass a jscript variable to a vbscript variable ?

G

Guest

I am supporting an application which has shifted alot of it's code from
vbscript to jscript. How does one take the value of a jscript variable and
pass it into a vbscript variable in an asp page. I haven't found much useful
tips searching the web, can anyone please offer a solution.



Here a sample of what I am delaing with:

In the asp page I have this:

var msClientId =
moMainFrame.goWindowContextCache.itemValueGet(window.name,"primaryId");



While I can execute alert('This is the msClientId') and have the value
displayed in an alert window, I need to take that value and place in a vb
variable to do some vb functions, such as



dim vbClientId

?? How do I get the value of csClientId into vbClientId.



Thank you !
 

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

Top