run ASP web application on remote computer
-
hey guys, I'm developing an ASP web application and i need to run it on another computer. computers are connected to the same LAN. How can I do that?
-
hey guys, I'm developing an ASP web application and i need to run it on another computer. computers are connected to the same LAN. How can I do that?
ASP.NET web application are run within IIS which servers requests for resources from that web application to clients. You make a request in your web browser for the page, just like you did when posting this question. You didn't need to have Code Project installed on your machine.
No comment
-
ASP.NET web application are run within IIS which servers requests for resources from that web application to clients. You make a request in your web browser for the page, just like you did when posting this question. You didn't need to have Code Project installed on your machine.
No comment
I configured IIS 7 but still it can't run my application on a remote computer.
-
I configured IIS 7 but still it can't run my application on a remote computer.
-
Need a lot more details. It is pretty simple. Setup a new site in IIS, then from the other computer open IE and browser to http://[servername]/[sitename]. Sounds like you might need training on IIS.
That's the issue, I try that path but the distant computer take time to respond then displays a timeout error, so I think it works but there is just that issue with reponse time.
-
That's the issue, I try that path but the distant computer take time to respond then displays a timeout error, so I think it works but there is just that issue with reponse time.
-
hey guys, I'm developing an ASP web application and i need to run it on another computer. computers are connected to the same LAN. How can I do that?
Right click on site in IIS and click "Browse", if the site's default page opens up, configuration is OK and problem might be with network. And if some problem with site configuration is there, it will show you proper error details.
-
hey guys, I'm developing an ASP web application and i need to run it on another computer. computers are connected to the same LAN. How can I do that?
You can use IP Address or Computer name of that computer to achieve the same. First of all deploy your application to your computer's IIS. Then if required, then disable your firewall. now you can access the web application from LAN computers using the URL given below: http://[ComputerName OR IP]/[WebAppName] I hope, this will help you out.