c# - How to solve "RadAsyncUpload does not have permission to write files in the TemporaryFolder. ..." -
my webapp(asp.net webform c#) working when uploaded it, telerik's radgrid working radasyncupload giving me following error.
radasyncupload not have permission write files in temporaryfolder. in medium trust scenarios, temporaryfolder should subfolder of application path.
i found
useapplicationpoolimpersonation , impersonate="true" in web.config
will solve problem under tag should add it? way new iis7.
if you're using windows authentication, want put inside <system.web>
<identity impersonate="true" username="domain\username" password="mypassword" />
if you're using anonymous auth, don't need username or password.
cheers
Comments
Post a Comment