broken link between aspx file and aspx.cs file

  • Thread starter Thread starter dan12345
  • Start date Start date
D

dan12345

I used 'save as' on my aspx.cs file, which broke the link
between it and it's aspx file. Restoring everyting to it's
previous state and checking the 'codebehind' properties of
the aspx file have not fixed it. changing the namespace
names also did not help - is this a known bug? Everything
should be ok but it's not - any suggestions?

Dan
 
It seems to have caught up with itself now - still, if you
want to criticise VS .NET - don't let me stop you ;) Any
theories about this glitch, I would love to know.
 
Check the Init section of the code behind file and make sure the
Page_Load event is still wired up. This happened to me recently when I
renamed a file and suddenly my code stopped executing.

-Jason
 
Back
Top