Can a regular C# application run as a web application?
What I mean exactly is can compile in a way that my regular application become a web app that accept query string?
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I would recommend building your logic into a Class Library. You can then make a simple shell for a regular application, or use this from a Web application to call into your logic.
This will provide a clean, reusable method of handling both scenarios easily.