I am writing an ASP.NET web page.
I want to be able to upload files to my server.
This I can do, I have found the code for this.
But when storing into DB I want to be able to store file sizes ranging from 1k to 10Mb.
What SQL Server datatype do i require for this?
I have the following table structure.

Downloads
  • ID (Identity)
  • Filename (String * 50)
  • FileData (Image * 16)

Is this correct?

Woof