Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. kazz01

    File Upload to DB, and adding Fields

    Hey veep You're a genius, it works now with those Session Variables. Thanks very much for help,its very much appreciated. I owe you one. Cheers
  2. kazz01

    File Upload to DB, and adding Fields

    Hi Veep I have rebuild my pages as you described. First I gotta form, with "Title" & "Description". This form assigns the two values to variables, which are passed to the "File Select" page. On the "File Select" page, the values of those variables are...
  3. kazz01

    File Upload to DB, and adding Fields

    Veep, thanks for your input & yes you are makeing sense even thought my own ASP knowledge is still limited. What im not sure how to do is, make the 1st form (Title & Description) submit to itself, and howto assign those values to session variables? I assume that somehow those variables would...
  4. kazz01

    File Upload to DB, and adding Fields

    Veep That is what I am trying to do, but it seems something is going wrong. First, the user selects a file and uploads it, then on the following page, he/she would then enter the title & description. But it does not put the data into the same record set.
  5. kazz01

    File Upload to DB, and adding Fields

    Hi there I have build a small Content Management system, which allows users to upload files via an ASP page to an Access Database. The Upload works fine, and the files are saved to the DB, which other users can then download. The problem comes in where I would like the user to beable to add a...
  6. kazz01

    Download a file from a database

    Well, its all working now. Thanks to all who contributed their brains to this forum. Especially Veep, Thank You Kazz01
  7. kazz01

    Download a file from a database

    Yep, FileName, FileID, ContentType, BinaryData are the columns in my database. I tried that amend, and now I get the following error: Microsoft OLE DB Provider for ODBC Drivers error '80040e14' [Microsoft][ODBC Microsoft Access Driver] Syntax error (missing operator) in query expression '*...
  8. kazz01

    Download a file from a database

    here's the code for the whole page download.asp <% Dim oConn Dim oRs Dim sSQL Dim cnnSearch Dim rstSearch Dim strSQL set oConn = server.createobject(&quot;adodb.connection&quot;) set oRs = server.createobject(&quot;adodb.recordset&quot;) oConn.Open = (&quot;DSN=seibDSN&quot;) strSQL =...
  9. kazz01

    Download a file from a database

    Oh, sorry I forgot Line 27 is: set oRs = oConn.execute(strSQL)
  10. kazz01

    Download a file from a database

    Veep I have tried to implement your piece of code but i get the following error: Microsoft OLE DB Provider for ODBC Drivers error '80040e10' [Microsoft][ODBC Microsoft Access Driver] Too few parameters. Expected 1. /download.asp, line 27 Im not sure exactly what this means, as im quite...
  11. kazz01

    Download a file from a database

    Hi there I am in the process of building a small &quot;Content Management System&quot; where users will beable to Upload files, (mainly PDF's) to an access database on my website. The users will also beable to search for files and then DOWNLOAD their selected file from the database. Ive got the...

Part and Inventory Search

Back
Top