write permission

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all,
I'm developing a ASP.Net application. The most important future is to
generate PDF files that MUST BE saved on the disk (of the server).
To achieve this goal I set write permission on destination folder using
"Windows permission".

Is possible set write permission using Web.Config (or other configuration
file) without use Windows Permission ?

Thanks
Alex
 
Alex,

In web.config you can set:

<identity impersonate="true" userName="xxx" password="yyy" />

Eliyahu
 
Back
Top