Hi guys,
Recently I installed the trial version and worked with it and all seems to be ok, I buy the Q1 version and uninstall the Q3 and here's where the pandemonium began... try to put a radajaxmanager on my ascx and the IDE says that the controls was not registered and the assembly could not be loaded, I erase the web.config line, delete the assemblies from gac, and finally and due my desperation uninstall everything once again, restart and install again, so I was thinking that the problem could be on the vsproject itself, but I get some clue of whats happening, when I use the smart tag of the radajaxmanager the design view provides me of the html tags that it made on the smart tag form and looks like this:
Recently I installed the trial version and worked with it and all seems to be ok, I buy the Q1 version and uninstall the Q3 and here's where the pandemonium began... try to put a radajaxmanager on my ascx and the IDE says that the controls was not registered and the assembly could not be loaded, I erase the web.config line, delete the assemblies from gac, and finally and due my desperation uninstall everything once again, restart and install again, so I was thinking that the problem could be on the vsproject itself, but I get some clue of whats happening, when I use the smart tag of the radajaxmanager the design view provides me of the html tags that it made on the smart tag form and looks like this:
| <Telerik.Web.UI.AjaxSetting AjaxControlID="btnDelete"><UpdatedControls> |
| <Telerik.Web.UI.AjaxUpdatedControl ControlID="pnlOrderDetail"></Telerik.Web.UI.AjaxUpdatedControl> |
| </UpdatedControls> |
| </Telerik.Web.UI.AjaxSetting> |
| <Telerik.Web.UI.AjaxSetting AjaxControlID="btnNotfound"><UpdatedControls> |
| <Telerik.Web.UI.AjaxUpdatedControl ControlID="pnlOrderDetail"></Telerik.Web.UI.AjaxUpdatedControl> |
| </UpdatedControls> |
| </Telerik.Web.UI.AjaxSetting> |
| <Telerik.Web.UI.AjaxSetting AjaxControlID="btnMatchmaking"><UpdatedControls> |
| <Telerik.Web.UI.AjaxUpdatedControl ControlID="pnlOrderDetail"></Telerik.Web.UI.AjaxUpdatedControl> |
| </UpdatedControls> |
| </Telerik.Web.UI.AjaxSetting> |
| <Telerik.Web.UI.AjaxSetting AjaxControlID="btnAddToMyOrders"><UpdatedControls> |
| <Telerik.Web.UI.AjaxUpdatedControl ControlID="pnlOrderDetail"></Telerik.Web.UI.AjaxUpdatedControl> |
| </UpdatedControls> |
| </Telerik.Web.UI.AjaxSetting> |
but with these tags a runtime error appears and it says that the control Telerik.Web.UI.AjaxSetting is not a HtmlGeneric control, but when I rolled back to my old style sentences of Q3 like this:
| <telerik:AjaxSetting AjaxControlID="btnDelete"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="pnlOrderDetail" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| <telerik:AjaxSetting AjaxControlID="btnNotfound"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="pnlOrderDetail" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| <telerik:AjaxSetting AjaxControlID="btnMatchmaking"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="pnlOrderDetail" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| <telerik:AjaxSetting AjaxControlID="btnAddToMyOrders"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="pnlOrderDetail" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
And....... IT WORKS!!! so whats the deal? what im doing wrong? thank you in advance for your future help and sorry for my poor english :)
KMILO