Qadri Jillani
Qadri Jillani

Reputation: 19

ajax control toolkit exception

i am using ajax control toolkit calender extender and i am getting the following exception:
Call stack location:
AjaxConrolTollkit.DLL!AjaxControlToolkit.ExtenderControlBase.Dispose()
*Source File Information

Locating source for 'f:\TeamCity\buildAgent\work\80acd78aa4c25314\Server\AjaxControlToolkit\ExtenderBase\ExtenderControlBase.cs'. Checksum: MD5 {ee 1a 1d c3 d5 ca a 7d 84 6b 74 7f 51 e8 63 6b}
The file 'f:\TeamCity\buildAgent\work\80acd78aa4c25314\Server\AjaxControlToolkit\ExtenderBase\ExtenderControlBase.cs' does not exist.
Looking in script documents for 'f:\TeamCity\buildAgent\work\80acd78aa4c25314\Server\AjaxControlToolkit\ExtenderBase\ExtenderControlBase.cs'...
Looking in the projects for 'f:\TeamCity\buildAgent\work\80acd78aa4c25314\Server\AjaxControlToolkit\ExtenderBase\ExtenderControlBase.cs'.
The file was not found in a project.
Looking in directory 'C:\Program Files\Microsoft Visual Studio 10.0\VC\crt\src\'...
Looking in directory 'C:\Program Files\Microsoft Visual Studio 10.0\VC\atlmfc\src\mfc\'...
Looking in directory 'C:\Program Files\Microsoft Visual Studio 10.0\VC\atlmfc\src\atl\'...
Looking in directory 'C:\Program Files\Microsoft Visual Studio 10.0\VC\atlmfc\include\'...
The debug source files settings for the active solution indicate that the debugger will not ask the user to find the file: f:\TeamCity\buildAgent\work\80acd78aa4c25314\Server\AjaxControlToolkit\ExtenderBase\ExtenderControlBase.cs.
The debugger could not locate the source file 'f:\TeamCity\buildAgent\work\80acd78aa4c25314\Server\AjaxControlToolkit\ExtenderBase\ExtenderControlBase.cs'.

help me in this scenario . thanks in advance

Upvotes: 1

Views: 4328

Answers (3)

Prabodh Tapke
Prabodh Tapke

Reputation: 1194

Use "ToolkitScriptManager" instead of "ScriptManager".

Upvotes: 0

Ravi Shankar Mandal
Ravi Shankar Mandal

Reputation: 1

Add this code in Web.config file:

<handlers>
  <add name="AjaxFileUploadHandler"
       verb="*"
       path="AjaxFileUploadHandler.axd"
       type="AjaxControlToolkit.AjaxFileUploadHandler, AjaxControlToolkit"/>
</handlers>

This solved my issue

Upvotes: 0

user2703320
user2703320

Reputation: 11

Drag and Drop the Tool script manager also when you drag and drop any control from ajax tool kit

Upvotes: 1

Related Questions