|
How to publish the mvc solution u have created to a website
1. Build the solution.
2. Right click on the project in Solution Explorer . Select Publish option.
3. if the webserver doesnot have MVC installed, copy the folloing dlls to the bin folder of your website before building the solution.
dlls to be copied to the bin folder:
a. System.Web.MVC.dll
b. System.Web.Routing.dll
c. System.Web.Extensions.dll
The dlls can be found by checking the physical folder path of these dlls in the reference folder.
do the steps 1 and 2 above.
Copy the files from the Publish folder to the destination folder on your website.
|