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