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 gkittelson 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: *

  • Users: jw424
  • Order by date
  1. jw424

    cannot open an existing file

    Hi, I have an asp page which needs to open an existing file for reading. But I always get an error saying the file does not exist. Here's my code: <% dim oFS set oFS = Server.CreateObject (&quot;Scripting.FileSystemObject&quot;) dim text set text = oFS.OpenTextFile...
  2. jw424

    HELP on reloading a page with new data

    i finally got it to work, i didn't pass on one of the needed variables causing the rs to be empty. thanks for all your help!!!!
  3. jw424

    HELP on reloading a page with new data

    thanks for your reply! i did exactly the same thing as you showed them, but i am now getting an error saying that &quot;ADODB.Recordset (0x800A0BCD) Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.&quot; and i found out that my...
  4. jw424

    HELP on reloading a page with new data

    hi, thanks for all the quick responses!! i tried out the code in the article about paging recordsets, but I got the following error &quot;ADODB.Recordset (0x800A0E7D) Operation is not allowed on an object referencing a closed or invalid connection.&quot; when I clicked on previous/next link...
  5. jw424

    HELP on reloading a page with new data

    i have an .asp page which executes a SQL query. Everything is working fine with the sql and the returned recordset. Now, I am trying to display the recordset 1000 rows at a time. My goal is to display the first 1000 rows, then add some buttons (depending on how many records returned) so user can...
  6. jw424

    How to Create a downloadable file at run time???

    When I call CreateTextFile(&quot;temp.txt&quot;), where does temp.txt reside by default? I don't seem to be able to find it anywhere? The funny thing is FileExists(&quot;temp.txt&quot;) returns true, but the link <a href=&quot;temp.txt&quot;> is always not openable. any suggestions?
  7. jw424

    How to Create a downloadable file at run time???

    Hi wushutwist, I tried using full path name, but it treats the file as a local file on the user's machine when I click on the link to open the file.
  8. jw424

    How to Create a downloadable file at run time???

    Hi, I am new at this vbscript. Please HELP!! Here's what I am trying to do: I use vbscript to run some SQL code to access the database. I want to put the query result in a file (newly created just as the SQL code is run). I use CreateTextFile to create a file, I can read from and write to...

Part and Inventory Search

Back
Top