Visual Studio is not working properly in Vista
-
Hello forum I've installed VS 2008 in Vista. It is working but not displaying the page in any browser. Browser is just displaying that the page can not be displayed. Can anybody tell me what is the solution. what should I do. Thanx Rahul Adya
What page is not showing up? One that you coded? Is IIS installed correctly?
The best way to accelerate a Macintosh is at 9.8m/sec² - Marcus Dolengo
-
Hello forum I've installed VS 2008 in Vista. It is working but not displaying the page in any browser. Browser is just displaying that the page can not be displayed. Can anybody tell me what is the solution. what should I do. Thanx Rahul Adya
check out the url in the displayed web page, does it look like http://localhost:xxxx/XXXXX ? ok, try to replace the localhost with 127.0.0.1, to make the url look like http://127.0.0.1:xxxx/XXXXX and try it, does this work ? if yes, then the error is from the hosts file, which maps the localhost to 127.0.0.1 which is your local machine's IP address, to correct that just go to C:\windows\system32\drivers\etc\hosts open it with notepad, and map localhost to 127.0.0.1 with adding this line: 127.0.0.1 localhost please tell me if this doesn't fix the problem.
Web Developer
-
check out the url in the displayed web page, does it look like http://localhost:xxxx/XXXXX ? ok, try to replace the localhost with 127.0.0.1, to make the url look like http://127.0.0.1:xxxx/XXXXX and try it, does this work ? if yes, then the error is from the hosts file, which maps the localhost to 127.0.0.1 which is your local machine's IP address, to correct that just go to C:\windows\system32\drivers\etc\hosts open it with notepad, and map localhost to 127.0.0.1 with adding this line: 127.0.0.1 localhost please tell me if this doesn't fix the problem.
Web Developer