I made an account to a Web Hosting site which only allows transfers & uploads using FTP. So, I tried hard to figure it out how to publish my Site with FTP. I tried Visual studio Publish but It didn't work. Now I want to upload it manually using File Zilla. Does anyone know which folders to upload from my Solution (Project). There are lots of so i am confused. If you can also explain about SQL Server setup. I would be highly grateful to you.
Asked
Active
Viewed 1.3k times
6
-
1Publish it on your local file system and then copy that all using your ftp – Rohit Arora Jun 30 '15 at 04:45
-
Can you please explain. All of the files in Project? – Hamza Baig Jun 30 '15 at 04:46
-
First of all, do you know how to publish it on your local ? – Rohit Arora Jun 30 '15 at 04:47
-
No.. I would be grateful if you can explain :) – Hamza Baig Jun 30 '15 at 04:48
-
Were you able to get it up? How did you make the requests point to your app? I mean how did you replace the default index page that the web hosting providers have? – who-aditya-nawandar Jul 02 '16 at 09:47
-
@stylojack_10 hosting provider automatically removed their page idk. – Hamza Baig Sep 23 '16 at 07:03
2 Answers
13
- Open your project in Visual studio. Right click on your main project and click publish
- Create a new profile with any name.Click next.
- Select publish method as File System.
- Also Select the location where you want to save.Click next.
- Select Configuration as Release-Any CPU.
- Click Publish.
Now you have published it on the location provided by you in 4th step.
Copy all the files from this location and upload it using FTP to the directory of your website where you want to.
For more information. Visit this link How to Publish

Rohit Arora
- 2,246
- 2
- 24
- 40
0
- Publish your source code to local file system.
Right click on your App project and select Publish.
You will see Publish Web wizard.
In Profile tab -> Select New Profile from
DropDownList
and give profile name.Next is Connection tab -> Select File System from Publish Method DropDownList.
Give path as Target Location where you would like to publish your source code.
- From file zilla do copy paste / selection to upload.

Community
- 1
- 1

RajeshKdev
- 6,365
- 6
- 58
- 80
-
After I publish it to my own computer can I run it from there or do I have to put it up on my server before I can run it outside of visual studio? – Travis Tubbs Dec 07 '16 at 18:35