tags:

views:

56

answers:

2

A few years ago there was a PHP script around called paFileDB. Essentially it created a database of files that end users could download and rate. It would keep track of the number of downloads as well.

I am looking for a replacement of this coded in ASP.net C#. For the last week I have been searching around for "asp.net C# file database" and have just gotten how to upload files to a database. I have also search with some other terms.

I do not need a full blown CMS like DotNetNuke or SharePoint. All I have been looking for is a system I could easily add to my existing .net C# site.

I have thought about coding one myself, but with me being rather busy at work and this being a personal project, I simply do not have the time to code this myself.

I hope that you guys can help.

Thank you!

+1  A: 

I looked around myself and this is what I found:

http://www.gleamtech.com/products/filevista/web-file-manager?gclid=CJf6tealtaACFUeT3wodTg8DTQ http://www.codeproject.com/KB/aspnet/aspnet_file_repository.aspx

(Tried googling "web file manager" mostly).

This one looked like a perfect fit, except it is in Perl... :( I include it only to see if I understood the request correctly, and maybe you can use this to find similar products.

p.marino
Sadly none of those do what I need. I also need the ability to add a description to all the files. The files would be publicly facing and the public would not have the ability to upload or anything like that.
Mitchell Skurnik
I suppose what I am looking for is similar to a photo gallery but for files
Mitchell Skurnik
http://www.codeproject.com/KB/web-image/Gallery_Server_Pro.aspx well this gets me 95% of the way there. Just no file descriptions
Mitchell Skurnik
A: 

I ended up going with the project I found on codeproject. It is not exactly what I wanted but close enough. Here is the link to help anyone else with this problem http://www.codeproject.com/KB/web-image/Gallery_Server_Pro.aspx

Mitchell Skurnik