From: shakthi on
Hi

I have a big problem. I need to send parameters from html,
javascript page to an exe file.

In my Javascript I do like this:
function doScript()
{
var sGet = window.location.search;

if(sGet)
{
// Drop the leading "?"
sGet = sGet.substr(1);
}
alert(sGet);
document.frm.action = "Offline_MobileContent.exe"+ sGet;

return true;
}
my ppc is giving file not found message if I give space and write the
parameters. Could any one please please tell me
how to do it. I dont have WSCript.shell support in pocket pc.

this problem eating my time like anything.