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

    Registering servlets

    I have had Tomcat 4.1 up and running on my linux box for some time and now I am giving Tomcat 5.5 a try on windows and I seem to be missing some nuance. I have a standard servlet program for which I have created the following directory structure under...
  2. danglingpointers

    populating radio buttons in JSP

    What I would like to do is populate the radio button selections with results from a database query. Here is what I have thus far: <% //begin JSP, call database %> <form> <table> <tr> <td><input type="radio" value="VAL1" name="button"></td> <td><input type="radio" value="VAL2"...
  3. danglingpointers

    generating table based on database resultset

    I would like to be able to use a single page that would be able to refresh a table based on the input into a text box and after clicking a button. Here is what I have thus far: <form> <input type="text" name="qstr">&nbsp&nbsp&nbsp&nbsp <input type="button" value="Search"...
  4. danglingpointers

    JSP Form Validation

    And now I shall reveal my truly newb-self. I have a form which I want to validate its fields before I submit it to a database. I am having some problems with my javascript. function form_validate(thisform) { with(thisform){ if(FIELD_VALUE.equals(null)){ alert("Enter a value!"); } return...

Part and Inventory Search

Back
Top