this is providing you used a UD4 login page - and providing whatever they use to login with is a name instead of an ID.
Open data bindings window
click the + button
choose session variable
in the box that pops up put MM_Username
now, on the page your displaying the test results.
Click once on the submit button, and remove the insert behavior.
and btw - you can now drag over the session just like a recordset field into any portion of any page. It'll display the person who's logged in.
now crack open the code part.
and right below <Form action=
put this
<input type="hidden" name="
name" Value="<%= Session("MM_Username"

%>">
change whats in blue to your database field name.
Click on the submit button - and add the insert record behavior - making sure all fields goto their respective slots.