Hello
I am using Visual Web Developer 2005 Express Edition and my breakpoints are not working. I verified this by putting a breakpoint at each line of a sample .aspx page in a new project (code used below). I tried resarting - no luck.
Is there a setting to enable this or is this a bug? Any suggestions?
Thanks
Dave
Partial Class _1
Inherits System.Web.UI.Page
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Button1.Text = "OK"
Dim s As String
s = "Not Ok"
Button1.Text = s
End Sub
End Class
I am using Visual Web Developer 2005 Express Edition and my breakpoints are not working. I verified this by putting a breakpoint at each line of a sample .aspx page in a new project (code used below). I tried resarting - no luck.
Is there a setting to enable this or is this a bug? Any suggestions?
Thanks
Dave
Partial Class _1
Inherits System.Web.UI.Page
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Button1.Text = "OK"
Dim s As String
s = "Not Ok"
Button1.Text = s
End Sub
End Class