Click here to Skip to main content
15,917,174 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I create one application in asp.net 2.0 using sql server2005.
I install this application on server system(OS: windows server 2003,vs 2005,sqlserver 2005,iis) and
client system(oS: XP sp2,vs 2005,sqlserver 2005,iis)


In this two sysyem I put application source in pc drive and
Now This application run on two pc's IIS and database store on server system
and Run throw Browser(http://localhos/abc/index.aspx)

BUT

I want to run this application on all pc with installation this only in server system
and I run this app. in all pc browser(without install client pc) type like ipaddress or adresspath

pls....
Give Reply
Posted

1 solution

What I understood from your question is that you are installing your web application in all the pc and each pc is accessing the website locally. This approach is fine for conventional windows based application but not for the web application. In web application you install the application on the central server and all the client access the server through a URL to use the application.

You install you application in the main server and provide the URL to all the pc so that they can access the application using their browser.

Your application URL will look something like this.

http://YourServarName/YourApplicationName/Default.aspx.

Or

http://YourServarIPAddress/YourApplicationName/Default.aspx.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900