c# - Accessing ASP.NET web application that only runs on a local machine -
so have 0 experience deploying software or putting live. situation this:
i have developed dashboard web application on laptop. application uses microsoft sql database runs locally. when run it, it's localhost address. now, need able access web application other pcs within company's network. way can user testing. ways this? searched , things confuse me no end.
i use:
- .net framework 4.5
- visual studio ultimate 2012
- iis7
thanks
there few things you'll need make local application visible on network. i'm assuming want app running on http://foobar/myapp
foobar
name of machine
here need do:
add url reservation machine allow iis serve content on url
http://foobar/myapp
create inbound rule in windows firewall allow incoming connections on port 80
you can find exact commands need run on scott hanselman's excellent blog post. of course, he's focusing on getting ssl work iis express, has enough pointers going, too.
Comments
Post a Comment