since i upgraded from 7.1005 to 7.1213, this error appears in chrome log :
Uncaught TypeError: undefined is not a function
some function doesn't work anymore like ConfirmButtonExtender or ModalPopupExtender
All works fine in visual studio but not when published in iis on the production server.
Comments: Resolved ... the problem comes from the minifying. in this release AjaxControlToolKit use AjaxMin v4.97. The previous version used an earlier version of AjaxMin. Why ? So, in the web.config i set debug=true like this : <system.web> <compilation targetFramework="4.5.1" debug=true"> preventing AjaxControlToolKit to use AjaxMin. All works fine like this but could bring performance issue :/ cheers
Uncaught TypeError: undefined is not a function
some function doesn't work anymore like ConfirmButtonExtender or ModalPopupExtender
All works fine in visual studio but not when published in iis on the production server.
Comments: Resolved ... the problem comes from the minifying. in this release AjaxControlToolKit use AjaxMin v4.97. The previous version used an earlier version of AjaxMin. Why ? So, in the web.config i set debug=true like this : <system.web> <compilation targetFramework="4.5.1" debug=true"> preventing AjaxControlToolKit to use AjaxMin. All works fine like this but could bring performance issue :/ cheers