asp.net - IIS express deploy application -


I have Visual Studio 2010 at home and developed a web application. Now I am on another computer in another place. I have a project folder on my USB drive and all this computer is installed IIS Express. Is there any way that I can run my web application anyway?

Assuming that you have the necessary files to run web applications in all project folders, Should be able to create a site and launch it.

Here you must add the IIS Express configuration file. The file is usually located in "C: \ USER \\ DOCUMENT \ IISExpress \ config \ applicationhost.config".

Below, you will need to change the path of the website and make sure you tie it correctly. You may have to change the port number if it fights with any other websites you want to keep.

  & lt; Sites & gt; & Lt; Site name = "MyWaveSite" id = "1" serverAutoStart = "wrong" & gt; & Lt; Application path = "/" & gt; & Lt; Virtual Directory Path = "/" Physical Path = "& lt; USB Drive & gt ;: \ & lt; FolderMovieSitesSite & gt; / & Gt; & Lt; / Application & gt; & Lt; Binding & gt; & Lt; Binding protocol = "htp" binding = ": 8080: localhost" /> & Lt; / Binding & gt; & Lt; / Site & gt; & Lt; Sites & gt;    

Comments