Hi,
I am develop on web application that application contains some of tools but i don't know how to run
the that application in lan .Please I request help me
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Dorababu MekaPosted Mar 15, 2012, 9:01 AM
- Make sure you actually have IIS 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 (IIS 6.0)
- Set up IIS How to set up your first IIS Web site
- You may even need to Install the .NET Framework (or your server will only serve static html pages, and not asp.net pages)
Installing your applicationOnce 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 information
Accessing the web site from another machine
In theory, once you have a web server running, and the application installed, you only need the IP ADDRESS of your web server to access the application.
To find your IP address try: Start -> RUN -> type cmd (hit ENTER) -> type ipconfig (hit ENTER)
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 like http://your_ip_address/NewApp/default.aspx
Dorababu MekaPosted Mar 15, 2012, 9:35 AM
Raghavendra GupthaPosted Mar 15, 2012, 9:31 AM