How can I get a copy of my working website and place it on my computer and make and see the changes before placing it on my server?
ASP.net website
Collapse
X
-
Tags: None
-
Use visual studio to edit your ASP.NET application.
After you're done working on the application, use Visual Studio to publish the application. When you publish a website VS (Visual Studio) will generate a bunch of files in a specified directory. Move the files generated to the web server to deploy the application in a live environment.
-Frinny
Comment