Code change are not taken into account in web app

Last post 12-22-2006 1:06 AM by Mikhail Arkhipov (MSFT). 1 replies.

Sort Posts:

  • Code change are not taken into account in web app

    12-21-2006, 9:04 PM
    • Member
      point Member
    • compugab
    • Member since 12-22-2006, 2:01 AM
    • Posts 1

    I'm using Windows Vista RC1 and Visual Web Developer 2005 Express SP1 with Vista support files. The user that runs Visual Web is a local admin. The files are on a file share access using a mapped drive. It's work well with XP but not with Vista.

    Went I make change to my code in Visual Web Developer 2005 Express, they are not taken into account, like if the change was not made.

    For example, I have this code:

    protected void Button2_Click(object sender, EventArgs e)
    {
        Response.Output.Write(1 + 1);
    }

    When I run it, it prints a 2 on my web page. But if I change to code for this:

    protected void Button2_Click(object sender, EventArgs e)
    {
        Response.Output.Write(1 + 2);
    }

    It still prints 2. I need to close Visual Web Developer and restart it for the change to be made.

    Thanks for an answer
    Compugab

  • Re: Code change are not taken into account in web app

    12-22-2006, 1:06 AM
    File shared is not considered trusted location by .NET framework. This is not a supported scenario, you either need to have files on the local drive or open site remotely via http:
    Thanks

    ------------------------------------------------------------

    This posting is provided "AS IS" with no warranties, and confers no rights.
Page 1 of 1 (2 items)