No, I meant connected.
What I was referring to with "breaks" is that Visual Studio hits a break point when you debug the application.....
Try this:
1. Start VS.NET and create a brand new C# Web App located at
http://localhost/WebApplication1
2. A Global.asax file will be created. Double click it and then follow the link to switch to code view
3. Locate Session_Start and change it to this:
protected void Session_Start(Object sender, EventArgs e)
{
Session["MyTest"] = "Hello, it works";
}
4. While on the line Session["MyTest"].... press F9 to set a break point.
5. Verify that the dropdown on the toolbar next to the blue "Play" arrow is set to Debug
6. Hit F5 to start the application.
If all is well, your code should halt at the line with Session["MyTest"]....
Does it?
Imar