Hi I still need help in doing this. With the recordsets I did as you said before. I filtered by the email as a url paramater. The default value is set to 1. Then I went to advanced and added another colparam for the verification code.
<%
Dim Recordset1__MMColParam
Recordset1__MMColParam = "1"
If (Request.QueryString("Email") <> "") Then
Recordset1__MMColParam = Request.QueryString("Email")
End If
%>
<%
Dim Recordset1__MMColParam1
Recordset1__MMColParam1 = "1"
If (Request.QueryString("code") <> "") Then
Recordset1__MMColParam1 = Request.QueryString("code")
End If
%>
I think thats how it should be but I am getting the error message I mentioned on my previous post. Could this because of the datatype. I set it to varchar. What do I need in the form to pass the value to the emailverified field. Do you need to use securityassists autheticate user or rules manager. I'd like to know what I have to do to get this to work. As I have been stuck on this for over a month I appreciate your help.