Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to solve "RadAsyncUpload does not have permission to write files in the TemporaryFolder. ..."

My WebApp(asp.net WebForm C#) is working properly but when i uploaded it, telerik's radgrid is working properly but RadAsyncUpload is giving me following error.

RadAsyncUpload does not have permission to write files in the TemporaryFolder. In Medium Trust scenarios, the TemporaryFolder should be a subfolder of the Application Path.

i found that

UseApplicationPoolImpersonation and impersonate="true" in the web.config

will solve the problem but under what tag i should add it? by the way i am new to IIS7.

like image 596
user3342646 Avatar asked Mar 06 '14 07:03

user3342646


1 Answers

For me the issue was resolved after going into IIS folder where the site files are located, and ensuring that the folder has "Modify" and "Full Control" permissions for Users.

enter image description here

like image 93
jbooker Avatar answered Oct 01 '22 22:10

jbooker