Error Creating Control - RadDockLayout
Unable to create type 'ajaxToolkit"PopupControlExtender'. Could not load assembly 'System.Web.Extensions....' or one of its dependecies. Tye system cannot find the file specified. What am I doing wrong?
is it a problem with the web.config file?
Thanks,
Ajit
<%
@ Control Language="VB" AutoEventWireup="false" CodeFile="Test.ascx.vb" Inherits="Apps_MapViewer_Test" %>
<%
@ Register Assembly = "AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="ajaxToolkit"%>
<%
@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %>
<
asp:ScriptManagerProxy ID="ScriptManagerProxy1" runat="server">
</
asp:ScriptManagerProxy>
<
link href="../../common/css/page-styles.css" rel="stylesheet" type="text/css" />
<
div id="FullColDiv">
<telerik:RadDockLayout ID="RadDockLayout1" Runat="server">
<telerik:RadDockZone ID="RadDockZone1" Runat="server" Orientation="Vertical" FitDocks="true" EnableEmbeddedSkins="false" Skin="GNet">
<telerik:RadDock ID="RadDock1" Runat="server" DockMode="Docked" EnableDrag="false" EnableEmbeddedSkins="false" Skin="GNet" Resizable="false">
<Commands>
<telerik:DockExpandCollapseCommand AutoPostBack="false" ClientTypeName="Telerik.Web.UI.DockExpandCollapseCommand" />
<telerik:DockCommand ClientTypeName="Telerik.Web.UI.DockCommand" AutoPostBack="false" CssClass="rdNew" Name="New" Text="New Layer" />
</Commands>
<TitlebarTemplate>
<div id="TitleBarTitle">My Uploads</div>
<asp:Image ID="rdOptions" runat="server" ImageUrl="~/GNet/Dock/options.png" CssClass="rdOptions" />
<ajaxToolkit:PopupControlExtender ID="PopupControlExtender1" runat="server" TargetControlID="rdOptions" PopupControlID="UploadOptions" Position="Bottom" />
</TitlebarTemplate>
<ContentTemplate>
</ContentTemplate>
</telerik:RadDock>
</telerik:RadDockZone>
</telerik:RadDockLayout>
<asp:Panel CssClass="popupMenu" ID="UploadOptions" runat="server" style="display:none;">
<table>
<tr><td>Option 1</td>
<td><asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem>Option 1</asp:ListItem>
<asp:ListItem>Option 2</asp:ListItem>
<asp:ListItem>Option 3</asp:ListItem>
</asp:DropDownList>
</td></tr>
<tr><td>Option 2</td>
<td><asp:CheckBoxList ID="CheckBoxList1" runat="server">
<asp:ListItem>Checkbox 1</asp:ListItem>
<asp:ListItem>Checkbox 2</asp:ListItem>
</asp:CheckBoxList>
</td></tr>
<tr><td>Option 1</td>
<td><asp:RadioButtonList ID="RadioButtonList1" runat="server">
<asp:ListItem>Radiobutton 1</asp:ListItem>
<asp:ListItem>Radiobutton 2</asp:ListItem>
</asp:RadioButtonList>
</td></tr>
<tr><td align="right" colspan="2">
<asp:ImageButton ID="cancel" runat="server" ImageUrl="~/images/small_cancel.png" />
<asp:ImageButton ID="apply" runat="server" ImageUrl="~/images/small_apply.png" />
</td></tr>
</table>
</asp:Panel>
</
div>