I have created a (update) form.
I gathered the data from the database (access) using a loop so the form fields are filled in with the data.
My code:
Code:
<%
do while not rs.eof
%>
<tr>
<td width="163" colspan="3">
<div align="right"><%=rs("KEY")%></font> </div>
</td>
<td width="130">
<input type="text" name="<%=rs("ID")%>" value="<%=rs("VALUE")%>" size="30"></font></td>
<td width="259"><%=rs("COMMENTS")%></font></td>
</tr>
<%
rs.movenext
loop
rs.close
set rs = nothing
%>
What i want is updating all the fields in the database like a batch update. I can do it with one record but there are a lot of values so the record become very long.
Does anybody have an idea?