-
Junior Member
Call a word.exe file to my asp.net application
I am using framwork 1.1 and my intension is to call a word.exe file to my asp.net application (web application) is there is any functions to call exe from web application
-
Junior Member
Re: Call a word.exe file to my asp.net application
System.Dignostic namespace has Process class, that supports to call other exe or executable and allows to pass parameters also.
Process objProcess = new Process();
objProcess.StartInfo.FileName = strScriptPath;
objProcess.StartInfo.Arguments = strArguments;
objProcess.Start();
objProcess.WaitForExit();
Hope this will help...
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules