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 strongm 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. 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

    its on the same page as the code for openindex
  3. dcarbone

    open page in new window

    also, how would i pass a variable to that page
  4. dcarbone

    open page in new window

    the link is <a href=&quot;page.asp&quot;>link</a> I tried that link, but i get error on page
  5. 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() {...
  6. 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.
  7. dcarbone

    database contents in email body

    will this work for multiple records, if i use a loop?
  8. 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
  9. dcarbone

    Sending E-mail

    Does anyone know where i can find an asp script to send out e-mails
  10. 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...
  11. 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;
  12. dcarbone

    day of the week

    how do i use vb script to find out the day of the week (mon - sun)
  13. 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...
  14. dcarbone

    CDONTS attachment

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

    Split method

    AWESOME...thanks for your help !!!
  16. dcarbone

    Split method

    ok, the code that i'm trying to split comes from a textarea input box from a form...for some reason, the code will not split it up...maybe i should split based on a different character? carrage return?
  17. dcarbone

    Split method

    ok...it doensnt seem to work in asp. if i use the javascript, then the variable cant be accessed by my asp code
  18. dcarbone

    Split method

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

    execute a query using DAO

    also the query requires a parameter to be passed to it
  20. 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

Part and Inventory Search

Back
Top