


I have an application on a site that uses the radasync upload. It is a two part application process. Everyone fills out the first page and upon the answer of a question, it'll load the second page with a certain control. These controls all contain a rad async upload and all have the same temp folder path and have the same expiration timeout. Occasionally, in the error logs I see that some errors come with cannot find file in temp folder. I thought at first i thought that it was the expiration time out was set to 2 hours so i changed all of them to 5 hours, but that did not seem to resolve the issue as I keep receiving these messages. The application does not have a lot of questions so I do not think that it would take long to complete the application and the users should be able to complete the application before the time out expires. Could it be that since all controls are writing to the upload temp folder, that there is conflict?
protected void RadGantt1_TaskInsert(object sender, Telerik.Web.UI.Gantt.GanttEventArgs e) { foreach (var item in e.Tasks) { this.oGanttTacheBo.title = item.Title; this.oGanttTacheBo.parentid = item.ParentID; this.oGanttTacheBo.OrderID = item.OrderID; this.oGanttTacheBo.start = item.Start; this.oGanttTacheBo.end = item.End; this.oGanttTacheBo.PercentComplete = item.PercentComplete; this.oGanttTacheBo.Expanded = item.Expanded; // Here i can save in my database or i make a sql script ? // How this event it's FIRE ? this.oGanttTacheBo.Save(); } }Hi,
RadAsyncUpload is working allright in IE 7 when the application is run locally but on deploying the same to the server, the file upload doesnot work in IE7 but does work in FireFox. In IE 7, It seems stuck and after a few mintues gives the red symbol indicating a failure.
Can any one please shed some light on this ?
thanks in advance. \
An update: it does not work in IE 8 also; I am also not seeing any error on using OnClientFileUploadFailed. OnClientFileUploading returns the message alert given in javascript. After that it just stays with the orange ball blinking. it never goes to the next event and never fails .
Also i have made sure that the app pool user has write permissions to the app_data/RadUploadTemp
Please help.