> I am new to ASP.NET (VB) but have previously programmed a lot in VB. I am
> running across a strange problem but cannot seem to figure out what is
[quoted text clipped - 16 lines]
> Has anyone else experienced this with the VSNET 2003? Any suggestions on how
> I can debug this problem.
Yes, RK, he is missing his "Handles button.click" clause. However, the real
point is that the page was working fine (indicating that the "Handles"
clauses were in place), then, all of a sudden everything stops working. What
is happening is that VS is deleting all of the Handle clauses by itself
without warning or notification. This has happen to us twice and we still do
not know why. Today's episode involved an ASP.NET page with a very lengthy
bit of code behind. In Design view I added (dragged and dropped) a button and
immediately decided that I didn't need it after all. Hitting F5 to go into
debug caused a rebuild and NOTHING was working. This project is all but
finished and we're just going through and disabling some buttons to guide the
user thru, and has been working for some weeks. After a couple of breakpoints
failed to stop the action I checked the subroutines and ALL of the "Handles
cntrl.event" clauses were gone!
The question is... this a bug, or a feature? and HOW DO WE SHUT IT OFF???
<\rant>
Anyone know? I can't find mention of this "feature" in the help files for
Visual Studio 2003. Is this Intellisense run amuck?? How can we avoid this?
We now spend more time making backups than we do writing new code as we don't
know when it will strike again.
> Hi,
> I think you are missing keywork Handles button.Click
[quoted text clipped - 20 lines]
> > Has anyone else experienced this with the VSNET 2003? Any suggestions on how
> > I can debug this problem.