Q
Quinn
Hi,
I add a folder to my web application, the folder name is "Text" and I put
one text file (1.txt) in the folder. in Default.aspx.vb load event, I try to
open this text file:
dim fs as new io.filestream(server.mappath("test\1.txt"),filemode.open)
dim sr as new io.streamreader(fs)
dim s as string=sr.readtoend
sr.close
response.write (s)
I got a error saying "access to path <path> is denied".
How do I resolve this problem?
Regards
Quinn
I add a folder to my web application, the folder name is "Text" and I put
one text file (1.txt) in the folder. in Default.aspx.vb load event, I try to
open this text file:
dim fs as new io.filestream(server.mappath("test\1.txt"),filemode.open)
dim sr as new io.streamreader(fs)
dim s as string=sr.readtoend
sr.close
response.write (s)
I got a error saying "access to path <path> is denied".
How do I resolve this problem?
Regards
Quinn