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...
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"...
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">    
<input type="button" value="Search"...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.