Reputation: 1981
This may be the wrong place but this is new to me. I did some ASP.NET programming in VS.NET awhile ago and I always did debug in the menu to run and test the site and I always noticed that it compiled ... now I have someone having asking me to work on their ASP.NET website and my question is (new to this type of hosting) do I just edit the files and then upload them via FTP or do I have to ask the host to do a compile or something?
Upvotes: 1
Views: 381
Reputation: 32624
I'm assuming you have developed a project in Visual Studio.
If this is a Web Site and not a Web Application:
If this is a Web Application, check to see if the hosting provider has a .axd service extension for "One-Click Publishing". If the provider does not have this feature:
With Web Applications you also have the ability to upload via FTP, which if you have all of the FTP information at hand it should be easy enough.
Upvotes: 2