Previously my project was of the WebForms type and used version 3.5 of the .NET Framework. But I converted it to the Web Application and updated the framework to 4.5, and some functionality that did not previously have problems just does not exist anymore.
Example: I have the Save and Cancel buttons inside a ContentTemplate that is inside an UpdatePanel that is inside a div with id # divParametro2. The div element # divParametro2 is "jQuery Dialog type."
After the conversion, when I place a breakpoint in the click and save events of the Save and Cancel buttons, I click on these buttons and nothing happens. Literally nothing! No javascript error and debug does not stop at the created breakpoints.
The image below is from the browser toolbox after the page has loaded.
I searched the internet for the ScriptResource.axd file, but I only understood that it handles asynchronous requests. I do not know how to use it or disable it.
The second error line, from the jquery-1.4.4-min.js file, line 23, I believe explains why some popups within the main popup, which contains the Save and Cancel action buttons, do not open. (i.e.
I need a direction.