Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

asp.net mvc app_data folder

Tags:

asp.net-mvc

I want to store a large number of images on a server gallery. I can create my own folder for that, but in the default template there is a folder named App_Data. Obviously, I imagine that creators of the template meant for us to store data there. But I can't find a way to open anything in that folder.

Is it intended? Or how do I do that? Or should I make my own folder for that reason?

like image 829
Trimack Avatar asked Sep 15 '09 17:09

Trimack


1 Answers

It is by design. App_Data was meant for data files like sql express DB's files. It is protected so that you can't surf to it and grab files out of it. Put your images in another folder to correct this.

like image 141
Kevin LaBranche Avatar answered Sep 27 '22 23:09

Kevin LaBranche