Please help !!
I created a very simple Web-site in Visual Studio Express 2012 running under Windows 8 Pro 64Bit. When I start the application I get the above mentioned error messages. My application consists of the following 2 files:
Test.aspx:
<%@PageLanguage="C#"AutoEventWireup="true"CodeFile="Test.aspx.cs"Inherits="Test"Debug="true"%>
<!DOCTYPEhtml>
<htmlxmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Test</title>
</head>
<body>
<form id="formTest" runat="server">
<div>
<asp:scriptmanager id="scripTest" runat="server">
<scripts>
<asp:scriptreference path="~/Test.js" />
</scripts>
</asp:scriptmanager>
</div>
</form>
</body>
</html>
Test.js:
function pageLoad ( sender, args )
{
window.status = "I'm here!";
}
I searched the Internet on this error, found a lot of proposals to solve the problem, nothing worked.
I suppose the reason is an incomplete Web.config file that does not contain any entry in connection with Ajax.