Click here to Skip to main content
15,885,874 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to relate from a web app to a windows service in
the same project asp.net with c#? I am using web interface to start a service. I am able to start the service exe but I want it to go to the service project in asp.net via c#. In task manager I can see the service process on starting
I did as follows:
Process p=new Process();
C#
p.StartInfo.FileName = @"D:\C3sps  Project\COMMON\Source\Untested\C3psps\C3PSPS_EOD\bin\Debug\C3PSPS_EOD.exe";
                           p.Start();
Posted
Comments
Ron Beyer 9-Jan-14 23:30pm    
What does "I want it to go to the service project asp.net with c#" mean? What is "it" in this context?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900