Hi,
I wanted to know if it was possible to save the posted file in a database table as binary. I am using asp.net and an web service (asmx). My database table is
ID (int),
Filename varchar,
Filedata (varbinary).,
title (varchar),
Description (varchar)
A user uploads a document and gives it a title and description. I know I can use a separate web form page as the saveurl and get the posted file, but I am struggling with returning the ID to store the title and description.
Any help greatly appreciated.
I wanted to know if it was possible to save the posted file in a database table as binary. I am using asp.net and an web service (asmx). My database table is
ID (int),
Filename varchar,
Filedata (varbinary).,
title (varchar),
Description (varchar)
A user uploads a document and gives it a title and description. I know I can use a separate web form page as the saveurl and get the posted file, but I am struggling with returning the ID to store the title and description.
Any help greatly appreciated.