I am trying to use a script mananger to use page methods to communicate between the server and client side of my page. I have added this code to the html
<asp:ScriptManager ID="ScriptManager1" runat="server"
EnablePageMethods="True">
When I add this, here is what is inserted into the designer page.
Protected WithEvents ScriptManager1 As Global.System.Web.UI.ScriptManager
But when this is automatically added, i get this error.
Error 52 Type 'System.Web.UI.ScriptManager' is not defined. C:\Users\Bill\Desktop\iPlan-7-layer\listing\summarytreeMain.aspx.designer.vb 32 44 iPlan
I added a reference in my project to system.web.services – but still can not seem to get around this error. Any suggestions? Thank you in advance.
A reference to System.Web.Extensions is probably missing in your project. I get the error when I remove it.