Click here to Skip to main content
Sign Up to vote bad
good
See more: ASP.NETAjax
Hi All,
I downloaded the ajax tool kit and added to my tool box. But when I drag and drop ajax controls on my web form,The below errors I am getting.
 
1. Could not load file or assembly 'AjaxControlToolkit' or one of its dependencies. The system cannot find the file specified.
2. Unknown server tag 'cc1:HoverMenuExtender.
 
Here is my .aspx code.
 
<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<script runat="server">
    protected void RadioButtonList1_SelectedIndexChanged(object sender, EventArgs e)
    {
        Label1.ForeColor = System.Drawing.Color.FromName(RadioButtonList1.SelectedItem.Text);
    }
</script>
 
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Untitled Page</title>
    <style type="text/css">
        .PanelCSS
        {
            visibility:hidden;
         }
    </style>
</head>
<body>
    <form id="form1" runat="server">
    <div style="height: 504px">
    <h2 style="color:DeepPink; font-style:italic;">Ajax Control Toolkit Example: Using HoverMenuExtender</h2>
        <hr width="550" align="left" color="Pink" />
        <asp:ScriptManager
            ID="ScriptManager1"
            runat="server"   >
        </asp:ScriptManager>
    <cc1:HoverMenuExtender
            ID="HoverMenuExtender1"
            runat="server"
            TargetControlID="Label1"
            PopupControlID="Panel1"
            PopupPosition="Bottom"   >
        </cc1:HoverMenuExtender>
        <br /><br />
        <asp:Label
            ID="Label1"
            runat="server"
            Text="Color changeable label."
            Font-Size="XX-Large"
            Font-Names="Comic Sans MS"
            >
        </asp:Label>
        <asp:Panel
            ID="Panel1"
            runat="server"
            Width="300"
            BorderColor="Gray"
            BorderWidth="1"
            CssClass="PanelCSS"
            >
            <asp:RadioButtonList
                ID="RadioButtonList1"
                runat="server"
                RepeatColumns="3"
                OnSelectedIndexChanged="RadioButtonList1_SelectedIndexChanged"
                AutoPostBack="true"
                >
                <asp:ListItem>Tan</asp:ListItem>
                <asp:ListItem>Crimson</asp:ListItem>
                <asp:ListItem>DarkBlue</asp:ListItem>
                <asp:ListItem>SeaGreen</asp:ListItem>
                <asp:ListItem>OrangeRed</asp:ListItem>
                <asp:ListItem>Magenta</asp:ListItem>
                <asp:ListItem>DeepPink</asp:ListItem>
            </asp:RadioButtonList>
        </asp:Panel>
    </div>
    </form>
</body>
</html>
 

Please solve my problem.
 
Regards,
 
N.SRIRAM
Posted 16-Jan-11 23:17pm
SRIRAM 21.3K


3 solutions

Try THIS[^].
  Permalink  
Very informative post. Its really helpful for me and beginner too. Check out this link too its also having a nice post with wonderful explanation on Ajax Toolkit HoverMenuExtender Control in ASP.Net:
 
http://mindstick.com/Articles/037b835c-a670-4200-8096-77771cf006e1/?Ajax%20Toolkit%20HoverMenuExtender%20Control%20in%20ASP.Net[^]
 
Thanks!
  Permalink  
Comments
Manfred R. Bihy - 2-Jan-12 8:01am
How come you're answering questions almost a year old. Your questionable actions have already roused our suspicion. Besides that you should really learn how to answer properly and inserting links that work too. For now I fixed that for you.
Try using ToolkitScriptManager instead of ScriptManager. If still it does not solve the issue then check with your Ajax version or reload Ajaxtoolkit again to your toolbox.
Its working fine on my side.
 
Specify exact error in case it is not resolved.
 
Happy Coding
  Permalink  

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Sergey Alexandrovich Kryukov 6,889
1 Prasad_Kulkarni 3,671
2 OriginalGriff 3,359
3 _Amy 3,312
4 CPallini 2,925


Advertise | Privacy | Mobile
Web01 | 2.6.130617.1 | Last Updated 19 Feb 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid