Click here to Skip to main content
15,906,624 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
plz tell me how i can run my asp.net web application without using visual studio and without using command prompt?how many ways are there?
Posted
Comments
Suvendu Shekhar Giri 10-Dec-15 13:24pm    
Host in IIS and type the URL in browser.

Yes. Just publish it to a properly setup IIS web server.

You'll find the Publish option by right-clicking your web application Project in the Solution Explorer.
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 10-Dec-15 16:10pm    
That's correct, a 5, but I feel that the inquirer is confused a lot more, maybe to much to understand your answer, so I tried to add some explanations in Solution 2...
—SA
You actually never need any of that, neither VS nor command prompt. They can be used only for development, and not in all cases. The "Web application" is started on two sides: server side and client side. On server side, you start the HTTP server. Say, on Microsoft OS, you setup it as a service (Windows Service), and it could be something else, such as stand-along application. This is not really related to Visual Studio; VS just uses small server which is bundled with it, but this is not what happens in production. Then the Web application artifacts are deployed, which is, essentially, just copying of some file to the server side. And the application is not actually running until some of the client sends appropriate HTTP request to the server side.

—SA
 
Share this answer
 

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