I’ve created an asp.net mvc3 project with Visual Studio 2010. I want to know that all the menues and html properties will be seen in suitable positions or not. My monitor in 15-inch and I want to see my project in other computers with 13-inch or 17-inch. How can I run my project in a computer that Visual Studio, EF and … have’nt installed on it?
Share
I’m making the assumption that all of the computers are on the same network. If they aren’t this won’t work (and realistically you’re going to have to have a common network between them).
The easiest thing to do would be to make sure you’ve installed IIS on your development machine.
Next
deployyour MVC application to the local IIS. At that point it should be visible to the other machines on your network.Here’s an answer to a similar question that has plenty of links on how to set this up.
https://stackoverflow.com/a/3632434/52136