|
Before We Get Started Data Collection: Occasionally, in the course of The Scientist Game, you will be asked to make certain decisions, and (optionally) comment on your choices. As we collect some data on choices made, for example, we will publish that data on this site so that you can see how you fared against all participants. By default, you are assigned a 'Name'. If you would like to edit that name so that you may return at some time in the future and more easily recognize your own contributions, you may do so below. <% if request.form("submit") = "OK" then set conn=Server.CreateObject("ADODB.Connection") conn.Provider="Microsoft.Jet.OLEDB.4.0" conn.Open Server.MapPath("../mdb/scigame.mdb") Set rs = Server.CreateObject("ADODB.RecordSet") strName = request.form("fName") sql = "SELECT * from tblSciGame WHERE RecID = " & nRecID & ";" rs.open sql, conn, 3, 3 rs.update "UserName", strName rs.close set rs = Nothing conn.close set conn = Nothing response.redirect("overview.asp") end if %> |