Pedro, thanks for your help can I ask a further question in the
java script I assume that all the data is in the document. Is it possible to read that data from the document into a java object which can then be passed to the controlling
servlet as a parameter.
The problem is that all the data is passed to the servlet so that it can update the database.
Thansk again for your help
Tony
<script>
function submitAll()
{
var elements = document.getElementsByTagName("temp_limits");
for (var i = 0; i < document.forms.length - 1; i++)
{
var input = document.createElement("input");
input.type = "hidden";
input.value = elements[i].value;
document.forms[i].appendChild(input);
document.getElementById("allForm").submit();
}
}
</script>