I had the same problem several times with different ASPX pages after renaming them, and I am surprised that I cannot find anyone else with the same problem in stackoverflow.
When I start an ASP.NET C # project, the debugger gives me a message like this.
Error 5 The name 'txtTitle' does not exist in the current context
It seems that the aspx and aspx.cs files are no longer linked. The only fix I found for this is to recreate the page and copy / paste my code.
Any idea how to fix this without recreating all this?
thank
source
share