Search results for query: *

  1. W

    downloading files from a sql database

    Problem resolved!!! Im not sure if anyone out there was familiar with the infrigistics webgrid..but I think I finally resolved my problem by editing one line cells(0).value needed to be simply cells(1).value now I'm getting the proper value. sorry about earlier not posting the code.
  2. W

    downloading files from a sql database

    the code: Private Sub DownloadFile(ByVal fname As String, ByVal forceDownload As Boolean) Dim cmd As New SqlCommand Dim conn As New SqlConnection Dim dr As SqlDataReader Dim sSql As String sSql = "Select pathtofile from Jobs Where pathtofile = '" & Session("filename") & "'" Try If conn.State...
  3. W

    DataSet or DataReader class

    thanks that was a great help...always wondered about that too.
  4. W

    downloading files from a sql database

    I have the path to the file stored in my sql database. Now I want to download that file(.jpg,.doc. etc) from the database and open a download dialog window...does anyone have a way to do this in the simplest form.:confused: ok i made some progress but i'm not getting the right path to the file...
Back
Top