I want to allow users to request files located in App_Data Folder. This is the error:
Error Summary
HTTP Error 404.8 – Not Found
The request filtering module is configured to deny a path in the URL that contains a hiddenSegment section.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Its not possible to access
App_Datafolder directly as it is used as data-storage for web application, for security reasons of the stored data you can access database from it only using connectionstring.web.config
check this http://www.codeproject.com/Articles/31557/A-Beginner-s-Guide-to-ASP-NET-Application-Folders#h
UPDATE
Programatically we can access any file in web application and write it to response:
Download: App_Data access sample