19
Feb/102
Feb/102
Is It Possible To Execute Windows Script Hosting Procedures In A Web Page Script.?
IE doesn't seem to support wsh objects and methods. I keep getting errors like "Object required 'WScript'" and "ActiveX component cannot create object 'GetObject'. Is there some libraries you can include to IE.
If not is there a way to call a .vbs or .js file from a web page?




February 19th, 2010
If you want to run the script on your server, you’d simply use ASP.
If you want to run a script on your client’s machine, you’d have to use Active X. It’s a huge security fault to allow a website to run a script on a client’s machine.
February 19th, 2010
u can call a function written in some other .js file or u can call a vb function written in .vbs file but nowadays browsers will not allow u to run a script file directly from ur code because of security reasons.