I keep getting this error in VS 2012:
AjaxControlToolkit requires ASP.NET Ajax 4.0 scripts. Ensure the correct version of the scripts are referenced.
I am using Ajax Control Toolkit 4.1.7.123
.Net Framework I am running is: 4.0
My ASPX Page has the following HTML Code:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Test.aspx.cs" Inherits="SASWeb.Content.Test" %>
<%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="asp" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<link href="~/Styles/Site.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server">
</asp:ToolkitScriptManager>
<asp:TextBox ID="txtSrchOrg" runat="server" CssClass="inputtext" Columns="50"></asp:TextBox>
<asp:AutoCompleteExtender ID="AutoCompleteExtender3" runat="server"
TargetControlID="txtSrchOrg" MinimumPrefixLength="1"
ServicePath="~/Autocomplete.asmx" ServiceMethod="GetReviewerOrgList">
<Animations>
<OnShow>
<Sequence>
<OpacityAction Opacity="0" />
<HideAction Visible="true" />
<Parallel Duration=".4">
<FadeIn />
</Parallel>
</Sequence>
</OnShow>
<OnHide>
<Parallel Duration=".4">
<FadeOut />
</Parallel>
</OnHide>
</Animations>
</asp:AutoCompleteExtender>
</div>
</form>
</body>
</html>