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 Wanet Telecoms Ltd 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. jillallynwilson

    SQL Statement that searches the same column for multiple values

    I need to search one field for multiple values. For example, user enters search query as 'apples and oranges'. The field lists the value a '1 apple, 2 grapes in oranges'. Below is the statement that I am trying but I am not sure if the CONTAINS syntax is correct or even valid. I found this...
  2. jillallynwilson

    Validate before Submitting

    I have the following script which is executed from a button: function SubmitForm() { if (!(ValidateCreditCard('Payment'))) { document._Payment.submit(); } } The form is only to submit, if it passes the 'ValidateCreditCard' check, however it is submitting the form even when it does...
  3. jillallynwilson

    Testing XML Requests with HTML form METHOD=Post

    I need to develop a way to send an XML Request to my application for testing. Currently, the application received the XML request from our customers e-Procecurement site. This works fine, however, I have to rely on them to initiate the request for testing. I would like to create an HTML form...
  4. jillallynwilson

    Cookies & Frames

    I having problems with setting and reading my cookies within a frameset. If I access the site/catalog outside the frameset the cookies work fine. I read the post ( http://www.tek-tips.com/viewthread.cfm?qid=524721 )and ensured that my cookie was set correctly. However, I think my issue is...
  5. jillallynwilson

    history.back / history.go does not work in Netscape

    My company's site uses little pop-up windows to get customer input for maintaining their product inventory, such as a location of the product. In Netscape, after the pop-up is opened and then closed the browser's 'Back' button and a javascript (onClick="history.back()") button do not work. Can...
  6. jillallynwilson

    Pause a FOR loop to allow user to select option in pop-up window

    Within my company's Supply Chain Management system I need to allow our customers to select multiple lines from their inventory list to be re-ordered. I can get the code to loop through the checked items, however, it only shows the necessary pop-up window for the last item selected. I need the...
  7. jillallynwilson

    SaveAs Command Function Does Not Work in Netscape 7.02

    The following code works in IE 6.0 but not Netscape 7.02. I noticed that in the File Menu structure in IE the command is 'Save As...', where in Netscape it is 'Save Page As...'. I tried to change the below code to just call the Save command but that did not work in either browser. Does...
  8. jillallynwilson

    SaveAs Command Function Does Not Work in Netscape 7.02

    The following code works in IE 6.0 but not Netscape 7.02. I noticed that in the File Menu structure in IE the command is 'Save As...', where in Netscape it is 'Save Page As...'. I tried to change the below code to just call the Save command but that did not work in either browser. Does...
  9. jillallynwilson

    document.location.href not working in Netscape 7.02

    The following code works in IE6.0, but not in Netscape 7.02. The submit button does work, because if I clear the email address and try to submit the form with a blank value, the alert is presented. Also, the alert (bebug purpose only) is presented in the browser if the email address is not...

Part and Inventory Search

Back
Top