Click here to Skip to main content
15,884,836 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
Hi,

When i click on an Accordion of AjaxControlToolKit the Just in time debugger of Visual Studio getting opened.I am currently using AjaxControlToolKit Version 4.1.40412.0.I am getting this error in IE8.This will not happen if i check the Disable Script Debugging in IE8.Is this the issue of Ajax ControlTool Kit that i am using?
Posted

1 solution

It means you have an error in your javascript, or in the way you call it. Try posting some relevant code associated with the line that the debugger is highlighting when it opens and we can likely help you a bit more as to what the issue is.
 
Share this answer
 
Comments
Espen Harlinn 25-Feb-11 6:28am    
Good reply, my 5
deepak thomas 4-Mar-11 1:50am    
I have used this

<cc1:Accordion ID="MyAccordion" runat="server" AutoSize="None" ContentCssClass="accordionContent"
FadeTransitions="true" FramesPerSecond="40" HeaderCssClass="accordionHeader"
HeaderSelectedCssClass="accordionHeaderSelected" RequireOpenedPane="false" SelectedIndex="-1"
SuppressHeaderPostbacks="true" TransitionDuration="250" Width="100%">
<Panes>
<cc1:AccordionPane ID="AccordionPane1" runat="server" ContentCssClass="accordionContent"
HeaderCssClass="accordionHeader">
<Header>
Click Here
</Header>
<content>
<table>
<tr>
<td>
Hi
</td>
</tr>

</table>


</Panes>

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



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