ok,
server.mappath() is used to trace the server's harddrive physical path up to the location of the file that contains the server.mappath() script, and will include in the layout anything you enter between (" "

. forinstance, if brinksters layout for web stuff was c:\inetpub\
you can put server.mappath("\memberName\db\database.mdb"

and it will map c:\inetpub\
for you and insert the text you put in (\memberName\db\database.mdb) after it.
But when you are altering your files on brinkster, aren't you already working in your "memberName" folder? so I wouldn't think you'd have to put the memberName inside the server.mappath script. But I also haven't worked with brinkster..that's just what makes sense to me. Try it both ways if you are having problems with it.
Here is code I came up with you, assuming you have a database named
"database.mdb" and a table inside that db named
"tablename" and fields inside the table named
"username" and
"useremail".
PAGE 1 "
test.asp"
-----------------------------------------------
<form method='post' action='test2.asp'>
Name:<input type='text' name='userName'><BR>
Email:<input type='text' name='userEmail'><BR>
<DD><input type='submit' value='Submit'><input type='reset' value='Reset'>
</form>
-----------------------------------------------
PAGE 2 "
test2.asp"
-----------------------------------------------
<%@ Language=VBscript %>
<% Option Explicit %>
<%
Dim username, useremail, sql, conn, DSNtemp
username = Request.Form("userName"
useremail = Request.Form("userEmail"
sql = "INSERT INTO tablename ( username, useremail ) VALUES ( '" & username & "', '" & useremail & "' );"
Set conn = Server.CreateObject("ADODB.Connection"
DSNtemp = "DRIVER={Microsoft Access Driver (*.mdb)};"
DSNtemp = DSNtemp & "DBQ=" & Server.MapPath("\memberName\db\database.mdb"
& ";"
conn.Open DSNtemp
conn.Execute(sql)
conn.Close
Set conn = nothing
response.redirect("test.asp"
%>
-------------------------------------------------
so for testing, create a database named database, a table within that named tablename, and a pk field, a username field, and a useremail field. Put it in your memberName\db\ folder, and try it. If it doesn't work, try without memberName. If it still doesn't work, contact me again. I'll let you try it out on my server if you like, but see if you can get it to work on brinkster first.
Hope this helps!
-Ovatvvon :-Q