In many places in msdn documentation you can find references to App_Data directory. For example here we can read:
To improve security when using a local data file in an ASP.NET application, you should store the data file in the App_Data directory.
and
Files stored in the App_Data directory will not be served to the Web.
I could not find a direct reference that would specify how is that security guaranteed. Are there any IIS settings etc. that I should watch out to ensure that the files we put in the App_Data directory suddenly do not become available to everyone.