Hi Friends,
I have a javascript file, on click of a submit button i need to pass user information to my python exe?
From the python exe i need to load and a call a function in my vc++ dll?
Please provide me your valuable inputs?
Hi Friends,
I have a javascript file, on click of a submit button i need to pass user information to my python exe?
From the python exe i need to load and a call a function in my vc++ dll?
Please provide me your valuable inputs?
Er - is this in a browser context? I apologize if not..
You'd probably need to use XMLHttpRequest to make an HTTP request to your server-side script and pass variables either through GET or POST.
See http://xkr.us/code/javascript/XHConn/ for a decent minimal cross-browser script.