Thanks for this prompt reply.
Persisted files are still saved in systemTempFolder (the TempDirectory property is not recognized??)
but the error message is now more logical:
Unable to find the uploaded file in directory: TempDirectory value
public pageclass() {
this.Init += new EventHandler(this.CPage_Init);
}
protected void CPage_Init(object sender, EventArgs e) {
tDocUpload.AutoUseSystemTempFolder = false;
tDocUpload.TempDirectory = CfgVar.DOC_STORAGE_TEMPDIR;
}
Any idea?