Thank you .. I followed your advice and got my issue fixed.. Thanks a lot chris poter
If any one getting this Error Message .. Please get into control panel-->Administrator Tools-->Internet Information Service-->Now Right Click on Local Computer and then select--> All Tasks---> Restart IIS
This will fix your issue..
I was not able to solve this problem until I finally granted access to "Everyone" on the .../Temporary ASP.NET Files folder. However, when I looked into this, I found this worked because my application was impersonating a specific service account.
I would encourage everyone to clearly identify the user that the process is running as! Does your web app impersonate the current user? If so, it would likely work on your development machine, where you are an admin, but you would see this
error on a server where you didn't have privileges to the temporary asp.net folder. Also consider what identity your app pool is running under.
You may receive this error if you are running your site with impersonation. Check your web.config impersonation tag and/or the security context that the particular user is running under:
<br /><br />
Siva_V
Member
89 Points
69 Posts
Re: Could not load file or assembly 'AjaxControlToolkit' or one of its dependencies. Access is de...
Sep 18, 2008 12:23 PM|LINK
Thank you .. I followed your advice and got my issue fixed.. Thanks a lot chris poterIf any one getting this Error Message .. Please get into control panel-->Administrator Tools-->Internet Information Service-->Now Right Click on Local Computer and then select--> All Tasks---> Restart IIS
This will fix your issue..
lividsquirre...
Member
184 Points
49 Posts
Re: Could not load file or assembly 'AjaxControlToolkit' or one of its dependencies. Access is de...
Sep 22, 2008 04:43 PM|LINK
I was not able to solve this problem until I finally granted access to "Everyone" on the .../Temporary ASP.NET Files folder. However, when I looked into this, I found this worked because my application was impersonating a specific service account. I would encourage everyone to clearly identify the user that the process is running as! Does your web app impersonate the current user? If so, it would likely work on your development machine, where you are an admin, but you would see this error on a server where you didn't have privileges to the temporary asp.net folder. Also consider what identity your app pool is running under.
lividsquirre...
Member
184 Points
49 Posts
Re: Could not load file or assembly 'AjaxControlToolkit' or one of its dependencies. Access is de...
Sep 22, 2008 04:46 PM|LINK
sorry, accidental double-post
vasireddybha...
Member
34 Points
18 Posts
Re: Could not load file or assembly 'AjaxControlToolkit' or one of its dependencies. Access is de...
Sep 23, 2009 11:08 AM|LINK
bishpop999,
You are right...It worked for me also. Thanks man..!
Bharath Reddy VasiReddy
vasireddybha...
Member
34 Points
18 Posts
Re: Could not load file or assembly 'AjaxControlToolkit' or one of its dependencies. Access is de...
Sep 23, 2009 11:12 AM|LINK
bishpop999,
It worked for me. Thanks alot.....
Bharath Reddy VasiReddy
sajeelmunir
Member
3 Points
1 Post
Re: Could not load file or assembly 'AjaxControlToolkit' or one of its dependencies. Access is de...
Dec 14, 2009 03:38 PM|LINK
The given solution on the following site solve this problem.
http://www.sajeelmunir.com/archive/2009/12/11/could-not-load-file-or-assembly-ajaxcontroltoolkit.aspx
Life in the UK Test
"AJAX .NET 2.0" " "Ajax Control Toolkit" Could not load file or assembly 'AjaxControlToolkit' or one of its dependencies
krantisinhpa...
Member
6 Points
10 Posts
Re: Could not load file or assembly 'AjaxControlToolkit' or one of its dependencies. Access is de...
Jun 29, 2010 11:57 AM|LINK
Thanks john.
orinw
Member
4 Points
2 Posts
Re: Could not load file or assembly 'AjaxControlToolkit' or one of its dependencies. Access is de...
Feb 17, 2011 06:05 PM|LINK
This also worked for me... Thanks!
MarniSatya
Member
2 Points
1 Post
Re: Could not load file or assembly 'AjaxControlToolkit' or one of its dependencies. Access is de...
Nov 08, 2011 02:32 PM|LINK
This Issue got resolved for me when I gave permission to my Id under IISUSER and USERS group in comp management.
nicolas.fort...
Member
4 Points
5 Posts
Re: Could not load file or assembly 'AjaxControlToolkit' or one of its dependencies. Access is de...
Nov 10, 2011 01:18 PM|LINK
You may receive this error if you are running your site with impersonation. Check your web.config impersonation tag and/or the security context that the particular user is running under:
<br /><br />
<identity impersonate="true" userName="UserName" password="Password" />
<br /><br />
That solved my problem
Thanks for the answer.