I'm using ASP.NET and testing a update panel. I know it does require a scriptmanager and I looked at all other similar questions in SO but no one answers my case.
Here is my code:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
This is Form A</div>
<asp:ScriptManager ID="aa" runat="server"></asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:Button Text="OK" runat="server"/>
</ContentTemplate>
</asp:UpdatePanel>
</form>
</body>
</html>
So As you see I do have a scriptmanager and still getting this error.
Feedbacks Appreciated.
==============================
None of similar questions is SO answers my question as "I Already do have a ScriptManager" in my code.