how to access my application from other PC asp.net 2.0 issue
-
dear All, i h a web application which i used to run from my VS 2005 and it generate the following address http://localhost:1027/UPMS/Login.aspx can any one tell ,me how i can access this from other PC as i give this address it does not if any one of u help me in this regard i will be gr8full to him i also publish the site but it give many error is publiushing a site is only solution or i can use some different methods thanks in advance Regards
-
dear All, i h a web application which i used to run from my VS 2005 and it generate the following address http://localhost:1027/UPMS/Login.aspx can any one tell ,me how i can access this from other PC as i give this address it does not if any one of u help me in this regard i will be gr8full to him i also publish the site but it give many error is publiushing a site is only solution or i can use some different methods thanks in advance Regards
The built-in web development server only services the local request, you cannot use it to process the remote request. If you want, you'll need to run your application in the IIS. What error do you get when publishing your web site? In addition to the Publish menu item, you can use the command line tool
aspnet_compiler.exe
to precompile your web site. -
The built-in web development server only services the local request, you cannot use it to process the remote request. If you want, you'll need to run your application in the IIS. What error do you get when publishing your web site? In addition to the Publish menu item, you can use the command line tool
aspnet_compiler.exe
to precompile your web site.thanks for ur kind respose i will send u error occur after i have done this
-
dear All, i h a web application which i used to run from my VS 2005 and it generate the following address http://localhost:1027/UPMS/Login.aspx can any one tell ,me how i can access this from other PC as i give this address it does not if any one of u help me in this regard i will be gr8full to him i also publish the site but it give many error is publiushing a site is only solution or i can use some different methods thanks in advance Regards
insted of localhost put your machines ip. for example http://199.88.88.99:1027/UPMS/Login.aspx to know your machine's ip do as below [on windows 2000] go to command prompt and type "ipconfig" it will show you the IP Address. now you or any one else can access it form other pc.
CA Keer.