How To Put C# Console App On A Web Page?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • abrogard
    New Member
    • Apr 2008
    • 3

    How To Put C# Console App On A Web Page?

    I've just begun learning C#, using a webbased tutorial and Visual Studio.

    I've got a little simple app written as a console app and now I want to put it on my website but I can't find how to do that.

    Frankly I find the whole Visual Studio IDE confusing, obscure, intimidating... hopefully it'll get better as I progress...

    Meanwhile, can anyone help me with how to put this tiny app onto a webpage?

    I maybe should add that it is very simple. It just takes in three different numbers, does a simple calculation and outputs the result to the console.
  • philipwayne
    New Member
    • Mar 2010
    • 50

    #2
    Yes you can simply change a few things to take the arguments from the POST/GET arguments on the web rather then from the command line basically it is the same. GET will come in as arguments, and POST will come in on STDIN. ASP.NET is your answer.

    Comment

    Working...