Results 1 to 2 of 2

Thread: Call a word.exe file to my asp.net application

  1. #1
    Junior Member
    Join Date
    Oct 2006
    Answers
    1

    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


  2. #2

    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
  •  
About us
Applying for a job can be a stressful and frustrating experience, especially for someone who has never done it before. Considering that you are competing for the position with a at least a dozen other applicants, it is imperative that you thoroughly prepare for the job interview, in order to stand a good chance of getting hired. That's where GeekInterview can help.
Interact