I'm building a website.I have 2000 files(pdf,tif,etc) which users can
download.
And the files will increase in times.
should I put the files into a database table or just put them into a folder.
TIA
Steve C. Orr [MCSD, MVP, CSM, ASP Insider] - 19 Jul 2007 10:58 GMT
If file management could be a headache (such as if you allow users to upload
files) or security is an issue (only certain users can download certain
files) then I'd suggest putting the files in SQL Server. Otherwise the file
system should be suitable.
Here's more info:
http://SteveOrr.net/articles/EasyUploads.aspx

Signature
I hope this helps,
Steve C. Orr,
MCSD, MVP, CSM, ASPInsider
http://SteveOrr.net
> I'm building a website.I have 2000 files(pdf,tif,etc) which users can
> download.
[quoted text clipped - 3 lines]
>
> TIA
Steve Kershaw - 19 Jul 2007 18:55 GMT
> I'm building a website.I have 2000 files(pdf,tif,etc) which users can
> download.
> And the files will increase in times.
> should I put the files into a database table or just put them into a folder.
>
> TIA
I would put them in a database table with an ID and timestamp for each
file. That way you can sort and delete the old files from SQL Server.
Steve