Click here to Skip to main content
15,892,643 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have downloaded AJAX From codePlex and reference the AJAX dll to the project but when I use the control they are not worjing what I have missed?

I used autocomplete extender & calender
Posted
Updated 30-Oct-13 1:25am
v3
Comments
TrushnaK 30-Oct-13 7:17am    
have you register your ajax control toolkit ?
[no name] 30-Oct-13 7:21am    
On page load it give me this error:
SCRIPT5007: Unable to get value of the property 'UI': object is null or undefined

And the autocomplete is not working
TrushnaK 30-Oct-13 7:41am    
Which browser you using?
[no name] 30-Oct-13 9:05am    
IE9
[no name] 30-Oct-13 7:18am    
Yes I did:
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>

Try This:-
add this in head tag
<meta http-equiv="X-UA-Compatible" content="IE=8" >


This will enable IE8 Standards mode
 
Share this answer
 
Comments
[no name] 30-Oct-13 9:55am    
I've solved this myself! Check my solution:
I've solved this myself!

I replaced ScriptManager:

<asp:scriptmanager id="ScriptManager1" runat="server" xmlns:asp="#unknown">
</asp:scriptmanager>


With ToolkitScriptManager:

<asp:toolkitscriptmanager runat="Server" xmlns:asp="#unknown">
</asp:toolkitscriptmanager>
 
Share this answer
 

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