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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by jruiseco

  1. jruiseco

    Javascript Confirm Problem

    Of course... Thanks...
  2. jruiseco

    Javascript Confirm Problem

    Here is my script... function confirmBid() { amount = document.submitBid.Bid_Amount.value; confirm("You are about to submit a bid of $" + amount + ". Is this correct?"); } Here is my onsubmit... onclick="return confirmBid();" How should I implement your...
  3. jruiseco

    Javascript Confirm Problem

    I have a simple javascript confirm box that says "Are you sure you want to continue? When I select no it submits anyway instead of letting the user stay there. Help...
  4. jruiseco

    Sending a ColdFusion e-mail in both plain text and html

    Can I have it too? josen@gomotorsports.com Thanks...
  5. jruiseco

    Clear input box after clearing alert message

    Thank you to everyone for your help... Regards!
  6. jruiseco

    Clear input box after clearing alert message

    OK. Let me ask a different question... How do I write a function that will be called on form submit that will examine all the type=file fields and when it finds files that do not have a pdf extension will throw an alert and name the offending fields for the user?
  7. jruiseco

    Clear input box after clearing alert message

    I'm not very good at this... Here's what I have but it's not working. What's wrong? function check(file,idv) { ext = file.substring(file.lastIndexOf('.')+1); if (ext != "pdf") { alert("You must upload document in Adobe PDF format..."); event.returnValue=false...
  8. jruiseco

    Clear input box after clearing alert message

    I have a file input box that gets validated by javascript. I am testing the extension of the file to determine if it is a pdf. If not an alert box should be thrown. After the alert box is thrown and the user clicks OK I want the input field to clear and the bad value removed. Here is what I...
  9. jruiseco

    Wildcards with IIS / Virtual Domains / Host Headers?

    Thanks for the help... It sounds like that's as close as we can get. Cheers!
  10. jruiseco

    Wildcards with IIS / Virtual Domains / Host Headers?

    Is there a way to make wildcard entries work with IIS 5 and host headers? Since a website only responds to the inputted host header names it has in IIS, any non listed host name will not resolve. Any experts on this?
  11. jruiseco

    DNS Config Problem...

    I discovered the issue. For some reason MS DNS is not writing the ns1.domain.com at the beginning of the SOA line. Instead it starts it with @. Any idea why this is?
  12. jruiseco

    DNS Config Problem...

    I am properly setup as the Primary and the slaves are setup correctly. I'm more inclined to think it is something to do with the settings in the zone file itself...
  13. jruiseco

    DNS Config Problem...

    I setup Windows DNS several days ago and my domains are resolving fine. When I go to www.dnssstuff.com and do a lookup on a domain I get the following message: WARNING: Your SOA (Start of Authority) record states that your master (primary) name server is: 65.245.134.64.. However, that server is...
  14. jruiseco

    Sql Server - How do I change the user mode?

    I just applied service pack 2 to my Sql Server 2000 and now am in single user mode. How do I change back to multi-user mode?

Part and Inventory Search

Back
Top