ASP.NET Development Server Problems Under Vista

I guess I was bored last night so I decided to upgrade my development system to Vista.  I have been running Windows XP Pro without any real issues but I wanted to start using some of the features of Vista I had only used in my virtual machines.

The upgrade went pretty well with only a handful of driver issues for video, printer and my sound card.

I installed the Visual Studio 2005 updates to run on Vista outlined by Microsoft and Visual Studio seemed to run just fine.    Note that ASP.NET is not installed by default, so you will need to enable it.

I normally use the ASP.NET Development Server for ASP.NET applications for development and testing and move over to IIS for deployment.   The only real problem I faced was hitting Ctrl-F5 in Visual Studio 2005 to run one of my web applications, the server started, Internet Explorer opened but nothing happened.  I waited for several minutes, but nothing.

After searching the web many different ways I found out that Vista implements IPv6 (versus the old IPv4) and browsers may have issues resolving http://localhost.  Since I use both Internet Explorer and Firefox for web development I decided to try just copying the URL the ASP.NET Development Server was using and pasting manually into both browsers and the same result…nothing, no error, nothing.

It turns out others have had this same problem and you can turn off IPv6 in Firefox pretty easily.

Disable IPv6 in Firefox
  1. Type about:config in the address bar and press Enter.
  2. Scroll down until you find network.dns.disableIPv6.
  3. Double-click on it to change its value to true.
  4. Restart Firefox.

After restarting Firefox I pasted the address used by ASP.NET Development Server into the Firefox address bar….and it worked like a charm.  So, it seems IPv6 is the issue.

I spent an hour or so trying to find a similar configuration for Internet Explorer but had no luck.  If a reader finds a setting in IE to disable IPv6 I would like to hear about it so I can update this post.

The solution I did get to work in IE was to disable IPv6 for my system.  I found a great article by the Cable Guy which pointed out what to do.   In short I set the following key:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\tcpip6\Parameters\DisabledComponents

to a value of 0xff and restarted the system.  Checking the ASP.NET Development Server URL in the IE address bar displayed my page.

Conclusion

This worked for me but I have reservations about the solution.  What are the side-effects or the future effects of disabling IPv6 which Microsoft includes with Vista.  If the system evolves and I need IPv6 then I will have a different problem.

If someone has a different solution I would like to hear it.  I am not keen on disabling IPv6 but it works and it is not irreversible.  On the plus side, browsing the web seems to be faster.

  • http://www.technology-matters.com/ Charles Assaf

    Found a more elegant solution for you (don’t kick yourself too hard).
    Disable IPv6 in your network adapter’s properties (you likely wont need it for a couple of years yet, and M$FT should have figured it out by then).
    This works for both IE and Firefox (without changing Firefox’s config).

  • http://www.technology-matters.com Charles Assaf

    Found a more elegant solution for you (don’t kick yourself too hard).

    Disable IPv6 in your network adapter’s properties (you likely wont need it for a couple of years yet, and M$FT should have figured it out by then).

    This works for both IE and Firefox (without changing Firefox’s config).

  • http://rbazinet.wordpress.com/ Rob Bazinet

    @Charles I tried this and it did not work, I had to do what I documented in my post. I found out disabling IPv6 on the network adapter did not disable for loopback.
    Thanks.

  • http://rbazinet.wordpress.com/ Rob Bazinet

    @Charles I tried this and it did not work, I had to do what I documented in my post. I found out disabling IPv6 on the network adapter did not disable for loopback.

    Thanks.

  • Saeed Tabrizi

    Hi
    I have same problem too in vs2008 on vista .
    I configured my firefox as you say , its working good
    But my system , still not working by localhost .
    if you find any solution , please tell to me by my email.

  • Saeed Tabrizi

    Hi

    I have same problem too in vs2008 on vista .

    I configured my firefox as you say , its working good

    But my system , still not working by localhost .

    if you find any solution , please tell to me by my email.

  • http://rbazinet.wordpress.com/ Rob Bazinet

    @Saeed This post IS a solution. If you follow it, it works on Vista.

  • http://rbazinet.wordpress.com/ Rob Bazinet

    @Saeed This post IS a solution. If you follow it, it works on Vista.

  • portella

    wow … Thanks a lot Rob! This was happing to me also … I tried to disable IPv6 in network adapter’s properties as Charles suggested without success …
    Thanks!

  • portella

    wow … Thanks a lot Rob! This was happing to me also … I tried to disable IPv6 in network adapter’s properties as Charles suggested without success …

    Thanks!

  • http://rbazinet.wordpress.com/ Rob Bazinet

    @Portella Great, glad I could help. It just shows Vista is in need of a service pack or two.

  • http://rbazinet.wordpress.com/ Rob Bazinet

    @Portella Great, glad I could help. It just shows Vista is in need of a service pack or two.

  • marko

    what about windows xp pro, i have wrong ports in IE and in ASP.NET development server when i load local webpage..
    Visual studio 2008 pro..

  • marko

    what about windows xp pro, i have wrong ports in IE and in ASP.NET development server when i load local webpage..

    Visual studio 2008 pro..

  • http://rbazinet.wordpress.com/ Rob Bazinet

    @Marko Not sure about XP Pro, I have never see issues with VS 2008 and XP Pro.

  • http://rbazinet.wordpress.com/ Rob Bazinet

    @Marko Not sure about XP Pro, I have never see issues with VS 2008 and XP Pro.

  • Manni

    Wow. Interesting.
    I’d be curious to see what Vista’s hosts file looks like, though. There should be some IP attached to localhost in there.

  • Manni

    Wow. Interesting.

    I’d be curious to see what Vista’s hosts file looks like, though. There should be some IP attached to localhost in there.

  • Saad Siddique

    HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicestcpip6ParametersDisabledComponents
    i did not find the Disables Components in my Parameters. I’m still unable to solve my problem in IE, however, it’s working fine in FireFox now

  • Saad Siddique

    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\tcpip6\Parameters\DisabledComponents

    i did not find the Disables Components in my Parameters. I’m still unable to solve my problem in IE, however, it’s working fine in FireFox now

  • nats

    HI!
    I have Vista Home Premium too. I still could not make the VSW 2008 work. I have the same problem as Siddique. I don’t see any DisabledComponents in my Registry.
    Do u know why?
    Thanks

  • nats

    HI!

    I have Vista Home Premium too. I still could not make the VSW 2008 work. I have the same problem as Siddique. I don’t see any DisabledComponents in my Registry.

    Do u know why?

    Thanks

  • michal

    on my vista and vs2008 i only have to change in IE from http://localhost:portnum/SomePage.aspx to http://127.0.0.1:portnum/SomePage.aspx and everything works

  • michal

    on my vista and vs2008 i only have to change in IE from http://localhost:portnum/SomePage.aspx to http://127.0.0.1:portnum/SomePage.aspx and everything works

  • http://www.aspnetzone.de/blogs/peterbucher/archive/2008/03/11/kein-zugriff-auf-webseite-mit-ie-und-vista-ws08.aspx Peter Bucher : Kein Zugriff au

    [...] Ein Leidensgenosse [...]

  • http://www.aspnetzone.de/blogs/peterbucher/archive/2008/03/11/kein-zugriff-auf-webseite-mit-ie-und-vista-ws08.aspx Peter Bucher : Kein Zugriff auf Webseite mit IE und Vista / WS08

    [...] Ein Leidensgenosse [...]

  • michal

    I found even better way, just comment int system32/drivers/etc/ line containing “[:::1] localhost”

  • michal

    I found even better way, just comment int system32/drivers/etc/ line containing “[:::1] localhost”

  • http://rbazinet.wordpress.com/ Rob Bazinet

    @Michal Great info, I will give it a try on my next Vista install.

  • http://rbazinet.wordpress.com/ Rob Bazinet

    @Michal Great info, I will give it a try on my next Vista install.

  • http://hackw.blogspot.com/ Sabith

    thanx Rob Bazinet and michel,better method is comment int system32/drivers/etc/host line containing :::1 localhost

  • http://hackw.blogspot.com Sabith

    thanx Rob Bazinet and michel,better method is comment int system32/drivers/etc/host line containing :::1 localhost

  • Mikael Nygaard

    #14 is the best solution.
    Comment out the line in the host file with where ::1 is mapped to localhost. Worked straight away.

  • Mikael Nygaard

    #14 is the best solution.

    Comment out the line in the host file with where ::1 is mapped to localhost. Worked straight away.

  • Edson Bassani

    Fantastic! It saved me a lot of work!
    Thanks so much!

  • Edson Bassani

    Fantastic! It saved me a lot of work!

    Thanks so much!

  • http://rbazinet.wordpress.com/ Rob Bazinet

    @Edson Great to hear. Helping out another person makes having a blog worth it.

  • http://rbazinet.wordpress.com/ Rob Bazinet

    @Edson Great to hear. Helping out another person makes having a blog worth it.

  • http://weblogs.asp.net/ryansmith/archive/2008/04/11/data-access-and-data-binding-sample-application-setup.aspx Data Access and Data Binding S

    RE: ASP.NET Development Server Problems Under Vista

    Pingback from Data Access and Data Binding Sample Application Setup – Ryan Smith

  • http://weblogs.asp.net/ryansmith/archive/2008/04/11/data-access-and-data-binding-sample-application-setup.aspx Data Access and Data Binding Sample Application Setup – Ryan Smith

    RE: ASP.NET Development Server Problems Under Vista

    Pingback from Data Access and Data Binding Sample Application Setup – Ryan Smith

  • http://www.privateasteroid.com/blog/post/ASPNET-Developer-Server-and-Vista.aspx ASP.NET Developer Server and V

    RE: ASP.NET Development Server Problems Under Vista

    ASP.NET Developer Server and Vista

  • http://www.privateasteroid.com/blog/post/ASPNET-Developer-Server-and-Vista.aspx ASP.NET Developer Server and Vista

    RE: ASP.NET Development Server Problems Under Vista

    ASP.NET Developer Server and Vista

  • Richard vN

    Ad an extra : before the ‘::1′ in the line where ::1 is mapped to localhost. Worked straight away.
    It Should be :::1 instead of ::1. A little ‘bug’ in Vista.
    ——————————————————————————–

  • Richard vN

    Ad an extra : before the ‘::1′ in the line where ::1 is mapped to localhost. Worked straight away.

    It Should be :::1 instead of ::1. A little ‘bug’ in Vista.

    ——————————————————————————–

  • http://www.accidentaltechnologist.com/microsoft/back-in-the-vista-saddle-again/ Back in the Vista Saddle Again

    RE: ASP.NET Development Server Problems Under Vista

    I have wanted to be a Windows Vista user and developer since before it was released, but there always seemed like something didn’t work or some application I used kept crashing. The pure pain of the performance of Vista alone was not worth the "upgrade"

  • http://www.accidentaltechnologist.com/microsoft/back-in-the-vista-saddle-again/ Back in the Vista Saddle Again

    RE: ASP.NET Development Server Problems Under Vista

    I have wanted to be a Windows Vista user and developer since before it was released, but there always seemed like something didn’t work or some application I used kept crashing. The pure pain of the performance of Vista alone was not worth the "upgrade"

  • http://www.babaei.net/ M.S. Babaei

    I have Vista SP1
    and VS2008
    and it works…
    and I’m testing
    Vista (withou SP) with VS2005 and VS2008
    and it works fine!
    I think it’s depending on Hardware
    because one of my friends has the same problem!

  • http://www.babaei.net/ M.S. Babaei

    I have Vista SP1

    and VS2008

    and it works…

    and I’m testing

    Vista (withou SP) with VS2005 and VS2008

    and it works fine!

    I think it’s depending on Hardware

    because one of my friends has the same problem!

  • http://david.mukaiwa.com/ D-Man

    Thanks Richard vN.
    I was one of the eager adopdters of Vista as I wanted to have some hands-on experience of dev’ing for the OS before it took root and I’ve had this problem for years.
    The simplicity of your solution shows how little I know about IPv6 but like Rob, I was never comfortable with the wholesale disabling of it either.
    The amazing thing is that my current installation of Vista was installed from a disc with SP1 slipstreamed in, suggesting that this ‘bug’ seems to have slipped by M$.

  • http://david.mukaiwa.com D-Man

    Thanks Richard vN.

    I was one of the eager adopdters of Vista as I wanted to have some hands-on experience of dev’ing for the OS before it took root and I’ve had this problem for years.

    The simplicity of your solution shows how little I know about IPv6 but like Rob, I was never comfortable with the wholesale disabling of it either.

    The amazing thing is that my current installation of Vista was installed from a disc with SP1 slipstreamed in, suggesting that this ‘bug’ seems to have slipped by M$.

  • http://www.accidentaltechnologist.com/ The Admin

    @D-Man I just installed an additional Vista system here with SP1 slipped as you did, I had the same problem again. I really like the solution of simply adding an additional ‘:’ in the hosts file, very elegant for sure.

  • http://www.accidentaltechnologist.com/ The Admin

    @D-Man I just installed an additional Vista system here with SP1 slipped as you did, I had the same problem again. I really like the solution of simply adding an additional ‘:’ in the hosts file, very elegant for sure.

  • steve

    thanks a lot you solved my problem

  • steve

    thanks a lot you solved my problem

  • wael

    :::1 instead of ::1
    works for me for internet explorer :-)

  • wael

    :::1 instead of ::1

    works for me for internet explorer

    :-)

  • http://mismike.blogspot.com/ Michael Paul

    Thank you so much! Worked for me, too. To make things perfectly clear, you want to go to C:WINDOWSsystem32driversetc and edit the "hosts" file with Notepad. In my case (running Windows XP Media Center Edition), I commented it out by using a pound sign.
    I replaced
    127.0.0.1 localhost
    with
    #127.0.0.1 localhost

  • http://mismike.blogspot.com/ Michael Paul

    Thank you so much! Worked for me, too. To make things perfectly clear, you want to go to C:\WINDOWS\system32\drivers\etc and edit the "hosts" file with Notepad. In my case (running Windows XP Media Center Edition), I commented it out by using a pound sign.

    I replaced

    127.0.0.1 localhost

    with

    #127.0.0.1 localhost

  • Zaibot

    I found another little work around that MUCH more usefull.
    Download Fiddler and set it up as proxy.
    Turn off that Firefox doesn’t use the proxy for localhost and 127.0.0.1 ofcourse. And if you have trouble reaching the server, setup a custom startpage that’s pointing to 127.0.0.1 instead of localhost. :)
    This way you can monitor your traffic with the development server and it also gets rid of the problem that it’s slow. ;-)
    Greetz

  • Zaibot

    I found another little work around that MUCH more usefull.

    Download Fiddler and set it up as proxy.

    Turn off that Firefox doesn’t use the proxy for localhost and 127.0.0.1 ofcourse. And if you have trouble reaching the server, setup a custom startpage that’s pointing to 127.0.0.1 instead of localhost. :)

    This way you can monitor your traffic with the development server and it also gets rid of the problem that it’s slow. ;-)

    Greetz

  • http://www.wpfstyles.com/ Andrew

    for me, I found that the port that the ASP.net dev server was starting on was different to the one that the browser was trying to connect to.
    make sure you check the settings of your dev server (right click the satellite icon -> properties) and check that the port # is the same as the one that gets appended to your url

  • http://www.wpfstyles.com Andrew

    for me, I found that the port that the ASP.net dev server was starting on was different to the one that the browser was trying to connect to.

    make sure you check the settings of your dev server (right click the satellite icon -> properties) and check that the port # is the same as the one that gets appended to your url

  • http://comunidadesmicrosoft.org/blogs/rilaros/archive/2008/08/15/problemas-con-visual-studio-2008-en-windows-vista.aspx Problemas con Visual Studio 20

    RE: ASP.NET Development Server Problems Under Vista

    Hola amigos, pues resulta que probando una aplicación Web en el Visual Studio 2008 no me cargaba, en

  • http://comunidadesmicrosoft.org/blogs/rilaros/archive/2008/08/15/problemas-con-visual-studio-2008-en-windows-vista.aspx Problemas con Visual Studio 2008 en Windows Vista

    RE: ASP.NET Development Server Problems Under Vista

    Hola amigos, pues resulta que probando una aplicación Web en el Visual Studio 2008 no me cargaba, en

  • http://nyordanov.blogspot.com/ Zalmoxis

    Andrew, for me this is the exact situation. And I guess there is a bug in VS 2008 because it is trying to start on one port and sees that it is unavailable and then start the instance of the webserver on another port.

  • http://nyordanov.blogspot.com Zalmoxis

    Andrew, for me this is the exact situation. And I guess there is a bug in VS 2008 because it is trying to start on one port and sees that it is unavailable and then start the instance of the webserver on another port.

  • Chan

    Thank you so much guy! :o D

  • Chan

    Thank you so much guy!

    :o D

  • Fer

    Thanks guy you really saved my life

  • Fer

    Thanks guy you really saved my life

  • Matt

    You can disable IPV6 against localhost by editing the host file:
    C:WindowsSystem32driversetchosts
    ::1 localhost
    Add a # in front of this line to make it a comment. Restart your PC. Good to go.

  • Matt

    You can disable IPV6 against localhost by editing the host file:

    C:\Windows\System32\drivers\etc\hosts

    ::1 localhost

    Add a # in front of this line to make it a comment. Restart your PC. Good to go.

  • cvg

    Thank you so much guy!
    localhost <> 127.0.0.1 :)

  • http://cvg cvg

    Thank you so much guy!

    localhost <> 127.0.0.1 :)

  • PerW

    :::1 instead of ::1
    works for me and for internet explorer :-)
    Thanks a lot!

  • PerW

    :::1 instead of ::1

    works for me and for internet explorer

    :-)

    Thanks a lot!

  • Donal

    rob,
    Thanks Very Much for solving my problem
    Donal O Sullivan

  • Donal

    rob,

    Thanks Very Much for solving my problem

    Donal O Sullivan

  • David

    I have the similar issue and after testing these solutions I still had the problem. When I configured IIS I had named the Binding for port 80 (default web site) with the fully qualified name for the machine (machine.company.com). I solved the issue by adding a second binding rule to port 80 with host name of localhost.

  • David

    I have the similar issue and after testing these solutions I still had the problem. When I configured IIS I had named the Binding for port 80 (default web site) with the fully qualified name for the machine (machine.company.com). I solved the issue by adding a second binding rule to port 80 with host name of localhost.

  • J

    Excelente solución la de agregar : , agradezco mucho su ayuda!

  • J

    Excelente solución la de agregar : , agradezco mucho su ayuda!

  • José Pérez

    Oh thaks guys, that change works for me ;)
    Saludos

  • José Pérez

    Oh thaks guys, that change works for me ;)

    Saludos

  • Patrik

    Thanks for this … strange that this has not been corrected by MS

  • Patrik

    Thanks for this … strange that this has not been corrected by MS

  • http://cidesoft.com.pe/blogs/gabrieljara/2008/12/problema-con-aspnet-web-development-server-en-vista-home-premium/ Cidesoft.Blogs() » Blog A

    RE: ASP.NET Development Server Problems Under Vista

    Pingback from Cidesoft.Blogs() » Blog Archive » Problema con ASP.NET Web Development Server en Vista (Home Premium)

  • http://cidesoft.com.pe/blogs/gabrieljara/2008/12/problema-con-aspnet-web-development-server-en-vista-home-premium/ Cidesoft.Blogs() » Blog Archive » Problema con ASP.NET Web Development Server en Vista (Home Premium)

    RE: ASP.NET Development Server Problems Under Vista

    Pingback from Cidesoft.Blogs() » Blog Archive » Problema con ASP.NET Web Development Server en Vista (Home Premium)

  • http://www.azadteam.com/ mehrdadsml

    Tnx a lot… My problem solved by this issue

  • http://www.azadteam.com mehrdadsml

    Tnx a lot… My problem solved by this issue

  • ganni

    hi! that was very helpful. thanks

  • ganni

    hi! that was very helpful. thanks

  • luxmi thakur

    HIII thanks alot its really working……………………..

  • luxmi thakur

    HIII thanks alot its really working……………………..

  • http://www.bolourian.com/ Ali Bolourian

    I never had this problem on VS2008 and Vista until I tried to use II7 instead of Visual studio web server and I followed instruction on VS2008 and enabled "IIS metabase and IIS 6 configuration compatibility" option under Windows Features and another option that I don’t remember now. The next day I started to have this problem. Of course I fixed it by disabling the line mentioned by michal, but I thought it’s worthwhile to mention what might be causing this issue.

  • http://www.bolourian.com Ali Bolourian

    I never had this problem on VS2008 and Vista until I tried to use II7 instead of Visual studio web server and I followed instruction on VS2008 and enabled "IIS metabase and IIS 6 configuration compatibility" option under Windows Features and another option that I don’t remember now. The next day I started to have this problem. Of course I fixed it by disabling the line mentioned by michal, but I thought it’s worthwhile to mention what might be causing this issue.

  • Michael5

    Reading all of the comments is interesting. I just "upgraded" from XP Pro to Vista Home Premium and I like it. My problem with IIS 7 seems to be the opposite. I can grab my web services via "LocalHost:<port> but not via my external static IP. Any thoughts?

  • Michael5

    Reading all of the comments is interesting. I just "upgraded" from XP Pro to Vista Home Premium and I like it. My problem with IIS 7 seems to be the opposite. I can grab my web services via "LocalHost:<port> but not via my external static IP. Any thoughts?

  • http://info4tech.wordpress.com/2009/03/10/visual-studio-2008-internal-web-server-stopped-working-in-vista/ Visual Studio 2008 Internal We

    RE: ASP.NET Development Server Problems Under Vista

    Pingback from Visual Studio 2008 Internal Web Server stopped working in Vista « Information for Technology

  • http://info4tech.wordpress.com/2009/03/10/visual-studio-2008-internal-web-server-stopped-working-in-vista/ Visual Studio 2008 Internal Web Server stopped working in Vista « Information for Technology

    RE: ASP.NET Development Server Problems Under Vista

    Pingback from Visual Studio 2008 Internal Web Server stopped working in Vista « Information for Technology

  • http://www.i4t.org/ Imran Aziz

    Thanks for this post, it helped me sort out this strange issue, for me changing the hosts file localhost entry sorted out the issue. Thanks to all who commented and updated this issue. I have linked this post from my post here info4tech.wordpress.com/…/visual-studio-2

  • http://www.i4t.org Imran Aziz

    Thanks for this post, it helped me sort out this strange issue, for me changing the hosts file localhost entry sorted out the issue. Thanks to all who commented and updated this issue. I have linked this post from my post here info4tech.wordpress.com/…/visual-studio-2

  • http://www.accidentaltechnologist.com/ Rob Bazinet

    Thanks everyone who commented here who found the guidance help them. It’s always great to know I helped others.

  • http://www.accidentaltechnologist.com Rob Bazinet

    Thanks everyone who commented here who found the guidance help them. It’s always great to know I helped others.

  • Tim Keen

    I changed my hosts file to be;
    ::1 localhost
    127.0.0.1 localhost
    Works fine now!

  • Tim Keen

    I changed my hosts file to be;

    ::1 localhost

    127.0.0.1 localhost

    Works fine now!

  • Metodi Macedonia

    Thank You so much,
    Very good explonation

  • Metodi Macedonia

    Thank You so much,

    Very good explonation

  • http://mygeni.tistory.com/ Sung Hak

    Oh~~ I had same problem
    But this post comment solved my problem
    Thanks for everyone

  • http://mygeni.tistory.com Sung Hak

    Oh~~ I had same problem

    But this post comment solved my problem

    Thanks for everyone

  • eric

    very good,it works! amazing

  • eric

    very good,it works! amazing

  • http://abstractnet.wordpress.com/2009/04/09/aspnet-development-server-problems-run-under-vista/ ASP.NET Development Server Pro

    RE: ASP.NET Development Server Problems Under Vista

    Pingback from ASP.NET Development Server Problems Run Under Vista « Developer.Net Blog

  • http://abstractnet.wordpress.com/2009/04/09/aspnet-development-server-problems-run-under-vista/ ASP.NET Development Server Problems Run Under Vista « Developer.Net Blog

    RE: ASP.NET Development Server Problems Under Vista

    Pingback from ASP.NET Development Server Problems Run Under Vista « Developer.Net Blog

  • johnny

    I hope this helps someone. I had to update my hosts file and in addition i had the web site http://localhost to my local intranet sites in internet options,security,advanced,

  • johnny

    I hope this helps someone. I had to update my hosts file and in addition i had the web site http://localhost to my local intranet sites in internet options,security,advanced,

  • fariz

    Hello, according to the changes that need to be done to the host file, I’ve tried it and when I want to save, it said that the file can’t be changed. Please help.

  • fariz

    Hello, according to the changes that need to be done to the host file, I’ve tried it and when I want to save, it said that the file can’t be changed. Please help.

  • http://www.absolutedomains.us/ Guy

    This helped me a lot in developing something for work. Had some issues with Vista.

  • http://www.absolutedomains.us Guy

    This helped me a lot in developing something for work. Had some issues with Vista.

  • http://www.absolutedomains.us/ Guy

    This helped a ton in a problem I was having setting up the server.

  • http://www.absolutedomains.us Guy

    This helped a ton in a problem I was having setting up the server.

  • Ozan

    Wow ! I reformatted my PC couple of times before it hit me that this may be a weird problem from Microsoft and started searching. Thanks a lot !

  • Ozan

    Wow ! I reformatted my PC couple of times before it hit me that this may be a weird problem from Microsoft and started searching. Thanks a lot !

  • http://www.ahmedblog.com/ Ahmed Abu Dagga

    Thank you so much, I was stuch for a long time in this issue now I know the reason :)
    I just change the IP from ::1 to 127.0.0.1 in the host file in etc folder, and now It works fine

  • http://www.ahmedblog.com Ahmed Abu Dagga

    Thank you so much, I was stuch for a long time in this issue now I know the reason :)

    I just change the IP from ::1 to 127.0.0.1 in the host file in etc folder, and now It works fine

  • Adrian

    Thank you. Great post in fact brilliant post because i could not get any help from microsoft

  • Adrian

    Thank you. Great post in fact brilliant post because i could not get any help from microsoft

  • Geo

    Thanks!!!
    @fariz: run notepad as admin, and then open the hosts file from notepad.

  • Geo

    Thanks!!!

    @fariz: run notepad as admin, and then open the hosts file from notepad.

  • http://www.best-gambling-news.com/ the best gambling news online

    Funny thing is though, that the new : makes Vista go completely bogus and ignore the entry.Putting a # in front of it would be better. :) Anyway, what does the ::1 stand for? It’s probably IPv6 something, but what does it mean? What does it actually do?

  • http://www.best-gambling-news.com/ the best gambling news online

    Funny thing is though, that the new : makes Vista go completely bogus and ignore the entry.Putting a # in front of it would be better. :) Anyway, what does the ::1 stand for? It’s probably IPv6 something, but what does it mean? What does it actually do?

  • http://newreil.com/tukang-nggame/ tukang nggame

    very useful post, This article helped a ton in a problem.
    thanks a lot

  • http://newreil.com/tukang-nggame/ tukang nggame

    very useful post, This article helped a ton in a problem.

    thanks a lot

  • sucam

    hi,
    i am using vs 2005, my site has a lot of pages and images on the page starts with the prefix "/" that indicate root. it work fine when i deploy site on production , but it did not work in asp.net development server.
    locahost/…/pages.aspx image: "/images/logo.gif"
    so when it detect "/" it search outside the mysite directory which is the main directory of my site. how can i point to mysite.

  • sucam

    hi,

    i am using vs 2005, my site has a lot of pages and images on the page starts with the prefix "/" that indicate root. it work fine when i deploy site on production , but it did not work in asp.net development server.

    locahost/…/pages.aspx image: "/images/logo.gif"

    so when it detect "/" it search outside the mysite directory which is the main directory of my site. how can i point to mysite.

  • henry

    ASP.NET’s problem Development Server also can happen put a restriction of protocol in your antivirus, for ejemlo in NOD32 it is necessary to enable the filters of HTTP protocol and POP3 in order that it(he,she) could execute developmen server.

  • henry

    ASP.NET’s problem Development Server also can happen put a restriction of protocol in your antivirus, for ejemlo in NOD32 it is necessary to enable the filters of HTTP protocol and POP3 in order that it(he,she) could execute developmen server.

  • http://cosmo.turbonet.com/ Bob Dickow

    This is really off topic, but I thought I’d chime in. I have installed a single web site on my IIS 7 on Vista, and it only serves a phantom page (that reads "It Works!"). This text is nowhere in my web site, and worse yet, is nowhere on my computer (calling http://localhost). Furthermore, specifying the index page brings up HTTP Error 404. Searching my computer’s file contents for ‘It Works!" brings up no matches. So, I’m stymied. I do better with IIS 5 on XP. I can’t make Vista work with IIS at all I guess. Of course, that file HAS to be here somewhere, but I can’t locate it, or any directories that might be acting as the virtual web on my machine. Search is not working right or something. Odd. But I haven’t given up yet, even after 2 days of hacking this.

  • http://cosmo.turbonet.com Bob Dickow

    This is really off topic, but I thought I’d chime in. I have installed a single web site on my IIS 7 on Vista, and it only serves a phantom page (that reads "It Works!"). This text is nowhere in my web site, and worse yet, is nowhere on my computer (calling http://localhost). Furthermore, specifying the index page brings up HTTP Error 404. Searching my computer’s file contents for ‘It Works!" brings up no matches. So, I’m stymied. I do better with IIS 5 on XP. I can’t make Vista work with IIS at all I guess. Of course, that file HAS to be here somewhere, but I can’t locate it, or any directories that might be acting as the virtual web on my machine. Search is not working right or something. Odd. But I haven’t given up yet, even after 2 days of hacking this.

  • http://slow-pc-tuneup.webhop.net/langsom-pc.htm Langsom PC? G??r din computer

    RE: ASP.NET Development Server Problems Under Vista

    Pingback from Langsom PC? G??r din computer hurtigere uden besv??r

  • http://slow-pc-tuneup.webhop.net/langsom-pc.htm Langsom PC? G??r din computer hurtigere uden besv??r

    RE: ASP.NET Development Server Problems Under Vista

    Pingback from Langsom PC? G??r din computer hurtigere uden besv??r

  • Jeff Mesens

    Thanks mate it solved my problem!

  • http://none. Jeff Mesens

    Thanks mate it solved my problem!

  • http://www.1stjerseys.com/ cheap nfl jerseys

    Thanks for sharing these information~~~~~~~~~~~~~~

  • http://www.1stjerseys.com cheap nfl jerseys

    Thanks for sharing these information~~~~~~~~~~~~~~

  • Toyin

    Thanks guys. Very useful information. However, the security settings on my windows vista would not allow me to change the host file. Please how can I beat this.
    Thanks
    Toyin

  • Toyin

    Thanks guys. Very useful information. However, the security settings on my windows vista would not allow me to change the host file. Please how can I beat this.

    Thanks

    Toyin

  • http://www.pendidikanriau.com/ pendidikan riau

    i am study asp.net now… thanks for article..

  • http://www.pendidikanriau.com/ pendidikan riau

    i am study asp.net now… thanks for article..