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 IamaSherpa 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. PeachRL

    How do I display my confirmation page before Submit

    Is there a way I can display my confirmation page within my script before the order is submitted so my customer can check the info being submitted
  2. PeachRL

    Function don't work! Why?

    Function order_onsubmit() dim returnVal if order.License.value = "" and order.State.value = "CA" then order_onsubmit = false returnVal = msgbox ("A License Number is required for California and Minnesota", 17, "Validation Error!")...
  3. PeachRL

    VB equivilent for Java snippet

    Can anyone show me the VB equivilent for the following Java snippet?? var checkOK = &quot;0123456789-()-&quot;; var checkStr = theForm.Phone3.value; var allValid = true; for (i = 0; i < checkStr.length; i++) { ch = checkStr.charAt(i); for (j = 0; j < checkOK.length; j++)...
  4. PeachRL

    Can I use Javascript &amp; VBscript the same time?

    I am using Frontpage 2000 which has built-in validation that generates Javascript. I needed additional custom validation which I will write in Vbscript. Will the 2 scripts conflict which other??
  5. PeachRL

    MsgBox Title

    I am using the MsgBox function in a web page and when I specify the title I want ie. &quot;validation error&quot; the title on the msgbox comes up &quot;Vbscript: validation error&quot; How do I get rid of the Vbscript portion??? Thanx!
  6. PeachRL

    Adding the values of Radio buttons

    I am using radio buttons as a way to select items for purchase. How can I add their values and display the total in a msgbox?? All suggestions appreciated!

Part and Inventory Search

Back
Top