hi,
i dont mean a row of a datatable ... if you need that stuff fully ajaxed, then i would not use a datatable ...
use a page_part which will contain one row (i mean the HTML which represents the row) for that
here is a !nontested! code which you need to go through .. but it should roughly explain my idea:
<%
sub pagePart_row()
'get the requested record
set rs = db.getRS("select * from table where id = " & page.RFP("id", 0))
showRow(rs)
end sub
sub showRow(aRS) %>
'if no record found then create an empty one
if aRS.eof then set aRS = ["R"](array(array("val1"), array("")))
%>
<tr><td>
<input type="text" name="val1" text="<%= str(aRS("val1")) %>">
</td></tr>
<% end sub %>
<% sub main() %>
<table>
<%
'get all records and generate the rows ...
'inefficient yet, if a lot records!!
set rs = db.getRS("select * from table")
while not rs.eof
rs.movenext()
wend
%>
<% showRow(rs) 'new record row %>
</table>
<% end sub %>
hope that gives you a clue ....
--
michal