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 bkrike 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: dcarbone
  • Content: Threads
  • Order by date
  1. dcarbone

    variable in the url

    <a href=&quot;<%= response.write(dst) %>&quot;onclick=&quot; openindex(); return false;&quot;> i'm using this link code to open a new window, how would i pass the value of response.write(dst) to the new window code
  2. dcarbone

    open page in new window

    i'm using this script to open a new window on click, but the page that contains the link does not stay after closing the popup window, it switches to a blank page. how do i make the browser stay on that page. <SCRIPT LANGUAGE=&quot;JavaScript&quot;> function openindex() {...
  3. dcarbone

    converting html text to float

    I'm trying to insert a number collect from an HTML text box, into an access database, into a number field...but i always get type mismatch. How can i convert this to a number, because i dont want the field in the database to be text.
  4. dcarbone

    database contents in email body

    I'm using a pretty common CDONTS script to send email messages with embedded HTML. How would I be able to insert the contents of an access table into the body of an e-mail
  5. dcarbone

    Sending E-mail

    Does anyone know where i can find an asp script to send out e-mails
  6. dcarbone

    CDONTS e-mail problem

    I am using CDONTS to send e-mail. However, this script sometimes gets out of control and sends the same e-mail out thousands of times per second. To stop sending, i have to stop SMTP and reinstall it. Does anyone know what this problem might be, or how to fix it? <% Dim strTo Dim...
  7. dcarbone

    asp to access database

    I am trying to select records from a table, based on their number in an autonumber field. But when i run the query, i get DATA type mismatch. i used the following code sql = &quot;select * from table where ID = '&quot;& id &&quot;' &quot;
  8. dcarbone

    day of the week

    how do i use vb script to find out the day of the week (mon - sun)
  9. dcarbone

    request.form help

    i have a series of about 600 text boxes that i need to pass to another asp page and they are named using a loop. ie do while not rst.eof <input type=text name=&quot;<%&quot;name&quot; & loop_counter %>&quot;> rst.movenext loop the exact number of boxes is not known and depends on user...
  10. dcarbone

    CDONTS attachment

    What is the proper syntax for sending an attachement using CDONTS
  11. dcarbone

    Split method

    Is it possible to split up a string based on spaces ie. x = split(y,&quot; &quot;)
  12. dcarbone

    execute a query using DAO

    I'm trying to execute a query which contains sub queries in VB access. az is the query name Set rst = db.Execute(az) also just copying out the sql code from the query to the vb access code does not work
  13. dcarbone

    printing a whole string

    how can i get asp to print out an entire string stored in a variable x = &quot;hello world&quot; response.write(x) this prints out only &quot;hello&quot;
  14. dcarbone

    query returning no values

    How do i use the recordset to check if a query returns no records
  15. dcarbone

    update query

    How do i create an update query in access that will prompt the user to enter in values that need to be entered into 7 fields in a table
  16. dcarbone

    append query

    How do i make an append query in access that will prompt the user for data that is to be entered into 7 different fields in a table
  17. dcarbone

    file write

    how do i use a response.write to write the value of a variable to a file x=&quot;hello&quot; oTextFile.Write response.write(x) this code just writes it to the screen and not to the file
  18. dcarbone

    writing to a file

    I need to write this line to a file: oTextFile.Write &quot;<td align=center><b><font size=2 face=Arial><% rst3Simple.Fields(&quot;Destination&quot;).Value %></font></b></td>&quot; but i keep getting this error: Microsoft VBScript compilation (0x800A0401) Expected end of statement...

Part and Inventory Search

Back
Top