I was asked to run a website which was made by Asp.Net and Sql server 2008 for a local network. I have never done to do that before and I don’t have a clue what to do, could you suggest me tutorial to help me to do so? I need to know how to run it there and how to config for other computers to use it? thanks
Share
you can try like this…
You must have a web server (Windows comes with one called IIS, but it may not be installed)
installed! Try typing
http://localhost/in your browser and see what happens. If nothing happens it means that you may not have IIS installed. See Installing IIS (IIS6.0)
Installing your application
Once you have done that, you can more or less just copy your application to
c:\wwwroot\inetpub\. Read Installing ASP.NET Applications (IIS 6.0) for more informationAccessing the web site from another machine
In theory, once you have a web server running, and the application installed, you only need the
IP addressof your web server to access the application.To find your IP address try:
Start->Run-> typecmd(hitENTER) -> typeipconfig(hitENTER)Once you have the IP address AND IIS running AND the application installed you can access you website from another machine in your LAN by just typing in the IP Address of you web server and the correct path to your application. If you put your application in a directory called
NewApp, you will need to type something likehttp://your_ip_address/NewApp/default.aspxTurn off your firewall
If you do have a firewall turn it off while you try connecting for the first time, you can sort that out later.