I need to call the vb script file(vbs file) in my C# windows application. Please let me know how to do this. There is an add in to access vb script file in Visual studio. But i need to access the script in code behind how to do this
|
|
the following code will execute a VBScript with no prompts or errors and no shell logo
A more complex technique would be to use
Using the StartInfo properties will give you quite granular access to the process settings. You need to use WScript if you want windows etc to be displayed by the script program. You could also try just executing cscript directly but on some systems it will just launch the editor :) |
|||
|
|
|
|
You mean you try to run a vbs file from C#? It can be done like running any other program from C# code:
But you have to make sure that it won't ask for anything, and it is running with the command line version of the interpreter:
|
||
|
|
|
|
Are you developing an ASP.NET web application for Internet Explorer only and want to execute VBScript on the client or would you like to execute it on the server...? On the client I think you need to work with ClientScript.RegisterStartupScript method. On the server I'd (carefully) do it als Ilya described in his answer. |
||
|
|
|
|
How would you get back results from the VBS? |
||
|

andtag. – Brad Gilbert Oct 16 '08 at 23:47