0

I just wanted some general information about some technologies that would allow me to link a website to a console application in C#. Let's say for example that users on my website fill a textfield with some information, then I want to take this information, process it into my Console Application, and print some results.

What's the technology to do this?

Thank you very much!

devconnected
  • 123
  • 9

1 Answers1

0

You can use the class System.Diagnostics.Process (see http://msdn.microsoft.com/en-us/library/vstudio/system.diagnostics.process(v=vs.100).aspx) to start your console application. Then, you can read/write to/from StandardOutput, StandardError and StandardInput, which are normal Streams.

Daniel Albuschat
  • 806
  • 8
  • 20