in the register.asp file lines 1216 to 1225 read
'If this is a new registration display a filed for the username
If strMode = "new" Then
%>
<input type="text" name="name" size="15" maxlength="15" value="<% = strUsername %>" />
<%
Else
Response.Write(strUsername)
End If
%>
you can delete all the lines and replace it with this
%>
<input type="text" name="name" size="15" maxlength="15" value="<% = strUsername %>" />
<%
or you can comment them so incase you want to put it back to normal later you can uncomment them
and for the email go down a little farther to line 1254, delete this line
<input type="text" name="email" size="30" maxlength= "60" value="<% = strEmail %>" />
and add this
<%
If strMode = "new" Then
%>
<input type="text" name="email" size="30" maxlength= "60" value="<% = strEmail %>" />
<%
Else
Response.Write(strEmail)
End If
%>
that should do it, if you have any other questions feel free to ask
Edited by thej3w