![]() |
|
|
|
#1 |
|
Hollo,
Can anybody tell me if I can write a web application using: Imports System.IO and have a folder in the server where files can be read from or where files can be created. Im just talking about text files. Thanks Willem willem joubert |
|
|
|
|
#2 |
|
Posts: n/a
|
Sure, but you have to add appropriate permissions (ACLs) to the target
folder since IIS has very limited rights. "willem joubert" <> wrote in message news:4KednWIb09bkObTfRVn-... > Hollo, > Can anybody tell me if I can write a web application using: > Imports System.IO > > and have a folder in the server where files can be read from or where > files can be created. Im just talking about text files. > > Thanks > Willem > Peter Rilling |
|
|
|
#3 |
|
Posts: n/a
|
Yes. Just make sure you give your ASP.NET process the correct
permissions on that folder. ---- - Wilco Bauwer Blog & Custom Controls @ http://wilcoding.xs4all.nl Wilco Bauwer |
|
|
|
#4 |
|
Posts: n/a
|
Just a little addition. Do not forget about security. Make sure that ASP.NET
application could not change any .aspx source file or get access to protected resources. "Wilco Bauwer" <> wrote in message news: oups.com... > Yes. Just make sure you give your ASP.NET process the correct > permissions on that folder. > > ---- > - Wilco Bauwer > Blog & Custom Controls @ http://wilcoding.xs4all.nl > gaidar |
|