Help me please
-
Dear Friends I am trying to load a file by filestream but when i write then command file=new filestream(filepath,filemode.create) its gives me the error "Access to the path is denied". Please Help me
-
Dear Friends I am trying to load a file by filestream but when i write then command file=new filestream(filepath,filemode.create) its gives me the error "Access to the path is denied". Please Help me
I am not sure but this can help... can you please make sure that ASPNET user account have appropriate access rights to the file?
-
I am not sure but this can help... can you please make sure that ASPNET user account have appropriate access rights to the file?
Dear try to upload in Binary format, while using filestream..
Hello Forum Always be in touch to help about the topic ASP.NET
-
Dear Friends I am trying to load a file by filestream but when i write then command file=new filestream(filepath,filemode.create) its gives me the error "Access to the path is denied". Please Help me
By default the asp.net application will work under aspnet user rights. aspnet user don't have rights to create files in the hard drive. if you want to write files in the server, you can go one of follwing way. 1. share the path, give the rights to every one. write the file in this shared folder. 2. give the admin rights to the asp.net (it's worst case, nobody accept). 3. User impersonation. - search asp.net impersonation for more info. Regards Elayaraja.S