Search

You searched for the word(s): userid:857799

Matching Posts

  • Re: View in Browser / 404 - Page not found

    Here is this bug fix also described by Microsoft: http://www.microsoft.com/security/portal/Entry.aspx?name=SettingsModifier:Win32/PossibleHostsFileHijack&threatid=1758608427027806866
    Posted to Installation and Setup (Forum) by asmund on 3/20/2009
  • Re: View in Browser / 404 - Page not found

    This Windows update caused this: Definition Update for Windows Defender - KB915597 (Definition 1.53.256.0) It caused a removal of the IP mapping to localhost in the hosts file located in C:\Windows\system32\drivers\etc\ You should include this line to the hosts file: 127.0.0.1 localhost See this thread for details: http://forums.cnet.com/5208-6132_102-0.html?threadID=334042
    Posted to Installation and Setup (Forum) by asmund on 3/12/2009
  • Re: Unable to launch the ASP.NET Development Server.

    This Windows update might have caused this: Definition Update for Windows Defender - KB915597 (Definition 1.53.256.0) It caused a removal of the IP mapping to localhost in the hosts file located in C:\Windows\system32\drivers\etc\ You should include this line to the hosts file: 127.0.0.1 localhost See this thread for details: http://forums.cnet.com/5208-6132_102-0.html?threadID=334042
  • Re: Cant debug on localhost

    This update caused this: Definition Update for Windows Defender - KB915597 (Definition 1.53.256.0) It caused a removal of the IP mapping to localhost in the hosts file located in C:\Windows\system32\drivers\etc\ You should include this line to the hosts file: 127.0.0.1 localhost See this thread for details: http://forums.cnet.com/5208-6132_102-0.html?threadID=334042
    Posted to Installation and Setup (Forum) by asmund on 3/12/2009
  • Re: Localhost not able to establish a connection on port ...

    This update caused this: Definition Update for Windows Defender - KB915597 (Definition 1.53.256.0) It caused a removal of the IP mapping to localhost in the hosts file located in C:\Windows\system32\drivers\etc\ You should include this line to the hosts file: 127.0.0.1 localhost See this thread for details: http://forums.cnet.com/5208-6132_102-0.html?threadID=334042
    Posted to Installation and Setup (Forum) by asmund on 3/12/2009
  • Re: CSS problem in Form tag in VS

    In the div#parent section, replace margin with padding . The margin is applied outside the element, which means that you specified an offset for the parent div tag: div#parent { padding : 10px 20px ; background : yellow ; } If you also add the following section, you will see how the child is affected by the parent padding: div#child { background : blue ; }
    Posted to Visual Studio 2008 (Forum) by asmund on 3/11/2009
  • Re: CSS problem in Form tag in VS

    In the div#parent section, replace "margin" with "padding". The margin is applied outside the element, which means that you actually told it to have this offset. padding is applied inside the element, and will have effect on elements inside it. If you also add a div#child to the css, you will se what effect this has on the child div: div#child { background:blue; } If the form tag has some default values, you can inlude form in the block together with body: body,form { margin:0;
    Posted to Visual Studio 2008 (Forum) by asmund on 3/11/2009
    Filed under: Cascading Style Sheets (CSS)
  • Re: Converting a solution to use VS 2008 environment

    It looks like it is some entries you have in your PreBuildCommands. Right click on the project and select Properties. In the properties page, select the Build Events section. You should see if your Pre-build event command line makes sense and that everythin you call here should work. You could try to remove all here, and see if it builds OK. Could it be that you have some relative path to something here that is not longer correct in the converted location?
    Posted to Visual Studio 2008 (Forum) by asmund on 3/11/2009
  • Re: Visual Studio no longer displays website

    The aswer by kfj on page 3 in that post was the one that fixed this for me. I also had this working before the weekend, but now it didn't. This is probably a security update from Microsoft that was applied. http://forums.asp.net/t/1235447.aspx?PageIndex=3
    Posted to Visual Studio 2008 (Forum) by asmund on 3/11/2009
  • Re: "Internet Explorer cannot display the webpage" from IE7 - ASP.NET Development Server Error?

    [quote user="kfj"] I had the same problem. And I looked at the hosts file. The problem is not the ::1 for IPV6, but the missing 127.0.0.1 localhost entry. Correct hosts must look like this in Vista: # Copyright (c) 1993-2006 Microsoft Corp. # # This is a sample HOSTS file used by Microsoft TCP/IP for Windows. # # This file contains the mappings of IP addresses to host names. Each # entry should be kept on an individual line. The IP address should # be placed in the first column followed
    Posted to Visual Studio 2008 (Forum) by asmund on 3/11/2009
    Filed under: Visual Studio 2008
Page 1 of 2 (11 items) 1 2 Next >