When using the Ajax Update Panel in Visual Studio to handle post backs for my search function, I encounter an issue. After generating a gridview with the results (i.e., searching for a member), whenever I update to the newest version from TFS, an error is thrown:
An unhandled exception at line 1, column 132567 in http://localhost:58921/bundles/MsAjaxJs? JavaScript runtime error: Unable to get the property 'PRM_MissingPanel' of undefined or null reference
The strange thing is that after this initial error, I can debug again and it won't break until I update to a newer version once more.
Despite extensive searching, I have been unable to determine what PRM_MissingPanel refers to.
Any thoughts on why this recurring issue might be happening?
The MsAjaxBundle originates from the ScriptManager generated when creating my Web App:
<asp:ScriptManager runat="server">
<Scripts>
<asp:ScriptReference Name="MsAjaxBundle" />
<asp:ScriptReference Name="jquery" />
<asp:ScriptReference Name="bootstrap" />
<asp:ScriptReference Name="respond" />
... (additional script references)
<asp:ScriptReference Name="WebFormsBundle" />
</Scripts>
</asp:ScriptManager>