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 Mike Lewis 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. chrisparr21681

    Regexp for SPF "IN TXT" in domain zone files

    My DNS zone files are update by a perl script and I am trying to parse an "IN TXT" record for adding SPF entries, but I want to make sure that the SPF record conforms to the RFC 1464 standard. I am under the impression that the basic standard is that any ASCII character is allowed, but the...
  2. chrisparr21681

    problems with dsnless connection strings

    Dim Conn, dbPath dbPath = "d:\myaccessfile.mdb" Set Conn = Server.CreateObject("ADODB.Connection") Conn.Open "PROVIDER=MICROSOFT.JET.OLEDB.4.0;DATA SOURCE=" & dbPath thats what i have so far, i'm getting this error Expected end of statement /index.asp, line 4 dbPath = "d:\myaccessfile.mdb"...
  3. chrisparr21681

    new at asp.net

    I have IIS running and am trying just a simple example from an asp.net book, but i cant get it to work, IE doesnt seem to do the asp.net commands. the code i am trying is.... <%@Page Language="VB" Debug="True" %> <html> <head> <title>Hello and Welcome Page</title> </head> <body> <center> <% Dim...
  4. chrisparr21681

    dropdown into new window

    would the syntax be like this?? function formHandler(form) { var URL = document.form.site.options[document.form.site.selectedIndex].value; window.open = URL; (or window.open.href = URL;) } if so i cant get either of these to work
  5. chrisparr21681

    dropdown into new window

    Hi, i have the dropdown as shown below but need to open it in a new window...i have tried window.new.location.href = URL; to no avail....please help function formHandler(form) { var URL = document.form.site.options[document.form.site.selectedIndex].value; window.location.href = URL...
  6. chrisparr21681

    frames and dropdowns.......

    ok i am working in frames (mistake i know), but i need to open the page selected from a dropdown automatically into my frame, the frame also needs to start on a default page so its not blank... This is the code for the dropdown, how can get the frame to have the selected option? function...
  7. chrisparr21681

    New window without toolbars

    that works, but i need the maximize button to be enabled any ideas?
  8. chrisparr21681

    New window without toolbars

    I need to open a new window without the address bar or any toolbars or navigation bars at the top....any suggestions?
  9. chrisparr21681

    error in user.exe

    ok...i been getting this error randomly in browsers... "iexplore has caused an error in user.exe" i have tried repairing the installation in add/remove, looked for programs like navhelper but it aint there and am running out of ideas...please help
  10. chrisparr21681

    image size

    i need to check that images are being uploaded through a content management module at a certain size, if they exceed the 10k or are not 120x120 then i want an error message to popup
  11. chrisparr21681

    mailto: body field

    i am trying to produce an email with a link in to automatically fill in the subject line and the body field. so far i have mailto:test@test.com?subject=test&body=this is the bit i need help with i need to be able to format the body field...i have tried using basic html commands like <br> but...
  12. chrisparr21681

    text file database

    Help.... i am trying to write a sign in page for a members section on my website...have the page set up but need to be able to write the info to a text file databae...this is because the damn hosting company won't allow access or sql databases on their servers and i don't want to have to change...
  13. chrisparr21681

    defining window size - NOT javascript

    i want to be able to open a new window from a link in HTML without using javascript, i can open it easily enough, i want to be able to set the size that the window opens at aswell. any ideas?
  14. chrisparr21681

    Replying to 'to' field

    thanks for the suggestion but the rules wizard wont allow this, it only allows replies to the addresses in the 'from' field, i need to reply to the 'to' field.
  15. chrisparr21681

    Replying to 'to' field

    Hi, i need to be able to automatically reply to the address that is in the 'to' field of the email when the message comes from a certain address. any help would be appreciated (ps it is not my email address in the 'to' field as i am in the 'cc' field. Thanks
  16. chrisparr21681

    combo box

    sorted it
  17. chrisparr21681

    combo box

    i have a combo box which contains headings which have a value of 0, i want to output the other values from the combo box into another form but am not sure how

Part and Inventory Search

Back
Top