Error in Visual Studio 2008 Designer?

It drove me crazy for months. I have several projects that compile without errors. If I start copying and pasting controls (or even just “p” tags), the designer will fail 1/2 times with the error “method or operation not implemented”. The complexity of the page does not matter. The “solution” is to delete the constructor file, exit the visual studio, open the visual studio and convert the aspx file for intruders to a “web application” to restore the designer file.

This is really annoying. I cannot find any fixes on Google. Is there a way to disable the auto constructor file? To make it generated only by the "build" command and not be interrupted every time I put an aspx page?

thanks

+3
source share
1 answer

To find a fix for the problem, you will need to find the cause of the problem. You may be able to get more information about what causes the problem if you attach the debugger to Visual Studio. This can be done by following these steps:

  • Open two instances of visual studio (run as administrator)
  • -, , .
  • Visual Studio (Tools → Attach to Process)
  • .

, . , " " Visual Studio. - , . Debug Visual Studio.

0

Source: https://habr.com/ru/post/1723363/


All Articles