I have tried these steps but could not make it. When I browse my app it shows dll file.
- Log onto the machine that is or will be hosting your application.
- Use IIS Manager to create a new website for your application.
- Create a new application in that site. I believe this also will automatically create an application pool with the same name for you and use it by default.
- Specify the
virtual directoryfor your application. This is going to tell IIS where to look for your mvc application. For this case lets assume it isC:\myApp - On your own machine
Build the applicationhowever you build it with the correct solution configuration (i.e.Releasemode). Lets say the result of your build is located atC:\MyProject\bin. - Copy
C:\MyProject\binfrom your machine onto your hosting machine atC:\myApp
I am a novice to this technology.