Re: Seems that the TempDirectory property is not working correctly anymore

  •  03-24-2009, 2:09 PM

    Re: Seems that the TempDirectory property is not working correctly anymore

    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?
View Complete Thread