Click here to Skip to main content
15,884,928 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
I have created an example page in which I have created some controls in updatePanle and Accordian control of Ajax Control Toolkit. It works fine in local server. But when I open that web page using IIS and browse that page none of the Ajax Tool Kit controls or Update Panel is working in IE9. But when I open that page in Mozila or Chrome it works well in that browsers then What wrong with IE9? I am using AjaxControl ToolKit 3.5 and also I had added toolScriptManager in top of the page.
XML
<asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server">
        </asp:ToolkitScriptManager>

And also In bin folder I have dll of Ajax Tool Kit.
Posted
Updated 6-Nov-12 18:22pm
v2
Comments
NAPorwal(8015059) 7-Nov-12 0:32am    
have u written any javascript code in the head tag of the page?
Casey Sheridan 7-Nov-12 14:28pm    
Is javascript enabled in your IE9?

Also I usually use <asp:ScriptManager ID="ScriptManager1" runat="server" />
I.explore.code 7-Nov-12 15:34pm    
I would check to see if JS is enabled on IE9!

1 solution

Hi,

Did you reference and register AjaxControlToolkit in your Assembly?

Example code in Master File:

<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="MasterPage.master.cs" Inherits="abs.cbn.ui.SiteMaster" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>


Hope this could help...

Regards,
 
Share this answer
 
v2

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

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900