Downloading files help

Joined
Dec 5, 2005
Messages
1
Reaction score
0
Hi,
I currently working on a site where I upload files into my database. but area Im having trouble with is how can i make them to be downloadable from the datagrid that im using to display them.
If anybody has any idea how I should handle this, any clues would be great
thanx
 
Did you use this:-

Dim FileName As String

SqlCommand.Parameters.Add("@File",Type, Size, SourceColumn).Direction = ParameterDirection.Output
-
-
-
FileName = SqlCommand.Parameters("@File")

Just try it and tell me the feedback.

Kind regards,
Yahya
 
Back
Top