Ajaxtoolkit smart tag not showing
I have been trying to solve this problem for a while, but there is still no solution.
I am trying to reinstall it, but still, the smart tag does not show up and when I right click it, it turns gray.
Anyone with a solution to solve this problem. I am using asp.net 3.5, visual studio 2008
thanks
a source to share
I don't know if this is a glitch in VS2008 or not, but I found a workaround. Go to Source View and drag a control from the Ajax Control Toolkit onto the edit screen. Then set the TargetControlId attribute to the name of the control you want to extend. Oddly enough, a smart tag appears after that, although it only offers the option to remove the expander.
Important: you need to remove the ScriptControlManager (if you added it) from the page and replace it with the ToolkitScriptManagerControl.
I hope this hel
a source to share
I found the problem. The previous answer I gave will work around the problem, but to get smart tags you need to register the AjaxControlToolkit assembly in any web page where you want to use them like this: <% @ Register Assembly = "AjaxControlToolkit" Namespace = "AjaxControlToolkit" TagPrefix = "cc1"%> This statement must go below the page declaration statement (at the top of the page). This will give you smart tags. Note. Whatever you set as "TagPrefix" must be used as a prefix for any instrumentation control:
Best regards
a source to share