Hi there - can anyone help - Ithis form is supposed to enter the value of the checkbox into the database but does not. I have the database field: register set as yes/no. But the form does not work with when I include the lines concerning "register".
The form itself is one that everyone meets when registering on a new forum. They have to tick the checkbox to register. I can't get the value of the checkbox to register in the database and so everytime the form is submitted, it returns a message to say,
no - the checkbox has not been crossed! Which is untrue.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<%@LANGUAGE="VBSCRIPT"%>
<head>
<title>xxx</title></head>
<body bgcolor="#EEEEEE" TEXT="#000000">
<table align="center" cellSpacing="5" cellPadding="10" width="900">
<tr><td align=center>
<font size=7 color="#B08D00" face="Georgia"><b>login or register on our forum</font></td></tr>
<tr>
If you are a new user, please register by completing the following form: but
confirm first that you agree to the conditions of the forum
</font>
<label for="register">I agree to the terms of the forum</label>
<label for="register"><input type="checkbox" name="register" id="register" value="1" checked="checked">
Yes</label>
<td><input NAME="OK" TYPE="SUBMIT" Value = REGISTER>
</td>
</tr>
</table>
</form>
<hr>
<%end if%>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> xxx </title>
</head>
<body bgcolor="#EEEEEE" TEXT="#000000">
<% If Request.Form("FrmNewusername") = "" Then %> <p><font face= "Arial" size="2">
You have not entered your First Name.</font>
You can try it <font face="Arial" background-color "#00FFFF">[ <a href onclick="window.history.back()">RETURN</span></a> ]</font>
again
<% ElseIf Request.Form("frmregister") = "" Then %><font face= "Arial" size="2">
Thank you but you did not agree to terms</font>
You can try it <font face="Arial" background-color "#00FFFF">[ <a href onclick="window.history.back()">RETURN</span></a> ]</font>
again
<% ElseIf Request.Form("frmEmail") = "" Then %><font face= "Arial" size="2">
Thank you but there is no lastname entered</font>
You can try it <font face="Arial" background-color "#00FFFF">[ <a href onclick="window.history.back()">RETURN</span></a> ]</font>
again
<% ElseIf Request.Form("frmNewpassword") = "" Then %><font face= "Arial" size="2">
Thank you but there is no email entered</font>
You can try it <font face="Arial" background-color "#00FFFF">[ <a href onclick="window.history.back()">RETURN</span></a> ]</font>
again
<% ElseIf Request.Form("frmNewusername") = "" Then %><font face= "Arial" size="2">
You forgot to enter your username <span lang="en-gb"></span>.</font>
<font face= "Arial" size="2">You can try it <font face="Arial" background-color "#00FFFF">
[ <a href onclick="window.history.back()">RETURN</span></a> ]</font> again
<p><b><font><h2><font color="#FF0000">Thank YOU <br> <%= Request.Form("frmNewusername") %></font>
<font face="Arial"></h2>
<h3>CONFIRMATION OF RECEIPT</h3>
</font></b><br>Thank you for your valuable contribution which is greatly
appreciated.<b><font ="arial" size="2"><bt> </b>
<br>
<p><font><i>Here is what you have sent us: </p></i></font>
Based from your code, it looks like your control name is "register" while when you try to access it your calling it "frmregister".. make sure you name and call it the same way to get the correct value.
Thank you very much for your kind input - and yes I am very appreciative for your correction. By doing it as you asked, it does give my customer the confirmation that he has checked the box - but unfortunately, when I open the database it is still not entered.
The database field is YES/No formatted as True/False. I have tried including an addition in the insert statement, showing the following:
<p><b><font><h2><font color="#FF0000">Thank YOU <br> <%= Request.Form("frmNewusername") %></font>
<font face="Arial"></h2>
<h3>CONFIRMATION OF RECEIPT</h3>
</font></b><br>Thank you for registering on our forum.<b><font ="arial" size="2"><bt> </b>
<br>
<p><font><i>Here is what you have sent us: </p></i></font>
Take note of the open apostrophe ' and end apostrophe '.
Make sure your insert fields are equal to your value fields. From your code before, you had the username coded twice, before and after the register value.
The name of the field of where you will get the value is important. frmRegister is a html control name, in order to get the value of that control, you have to use Request.Form("frmRegister") or since you already save the value to a variable vregister, you
can just simply call that variable, like i did.
Hope that helps. :)
Lerrie Oblego ^_^.
""Wrong is wrong even if everyone is doing it; right is right even if no one is doing it."
Hi Erriol - that is brilliant - the checkbox is now showing in the database each time there is an input! I am going to give below the whole code so that anyone else who is interested can try it out for themselves The database field for the checkbox is
called "register" and the field type is yes/no and it is formated as true/false.
Thank you once again. I would be very pleased to have your email address - as I am in the process of designing a whole new forum. My email address is tracy_wi@hotmail.com - and I have not seen anyone else on the internet using the code in the same way,
(A lot of ASP Classic is divided into different versions - but mine never matches them!)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<%@LANGUAGE="VBSCRIPT"%>
<head>
<title>xxxx</title></head>
<body bgcolor="#EEEEEE" TEXT="#000000">
<table align="center" cellSpacing="5" cellPadding="10" width="900">
<tr><td align=center>
<font size=7 color="#B08D00" face="Georgia"><b>login or register on our forum</font></td></tr>
<p><b><font><h2><font color="#FF0000">Thank YOU <br> <%= Request.Form("frmNewusername") %></font>
<font face="Arial"></h2>
<h3>CONFIRMATION OF RECEIPT</h3>
</font></b><br>Thank you for your registration to the forum.<b><font ="arial" size="2"><bt> </b>
<br>
<p><font><i>Here is what you have sent us: </p></i></font>
tracy_wi
11 Posts
Classic AsP - Writing a checkbox value to an Access Database
Feb 25, 2013 12:38 PM|LINK
Hi there - can anyone help - Ithis form is supposed to enter the value of the checkbox into the database but does not. I have the database field: register set as yes/no. But the form does not work with when I include the lines concerning "register".
The form itself is one that everyone meets when registering on a new forum. They have to tick the checkbox to register. I can't get the value of the checkbox to register in the database and so everytime the form is submitted, it returns a message to say, no - the checkbox has not been crossed! Which is untrue.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<%@LANGUAGE="VBSCRIPT"%>
<head>
<title>xxx</title></head>
<body bgcolor="#EEEEEE" TEXT="#000000">
<table align="center" cellSpacing="5" cellPadding="10" width="900">
<tr><td align=center>
<font size=7 color="#B08D00" face="Georgia"><b>login or register on our forum</font></td></tr>
<tr><td align="right" valign="bottom">
<b>
<font face= "Georgia" size=5 color="#000000">"To login to our Forum"</font></b><br><br>
</td>
</tr></table>
<hr width=900 size=0 color=#000000 align=center>
<%
' On Error Resume Next
If Request.Form("wname") = "" Then
' This part of the script enables a person
' to enter data in an HTML form.
%>
<div align=center>
<table border="0" valign="top" width="890" cellspacing=5 cellpadding=5 align="center">
<tr><td align=left>
<form METHOD="Post" ACTION="reg2.asp">
<table align="center" cellSpacing="5" cellPadding="10" width="900">
<font face= "Arial" size="2"><font face="Arial" size="2">
<tr>
<td><font face= "Arial" size="2">New Username:</font>
</td>
<td><font size="-1" color="#00009F">Newbie</font>
</td>
<td><font face= "Arial" size="2"><input NAME="frmNewusername" TYPE="TEXT" SIZE="15"></font>
</td>
</tr>
<tr>
<td><font face= "Arial" size="2">New Password:</font>
</td>
<td><font size="-1" color="#00009F">HiXXXXXX</font>
</td>
<td><font face= "Arial" size="2"><input NAME="frmNewpassword" TYPE="TEXT" SIZE="40"></font>
</td>
</tr>
<tr>
<td><font face= "Arial" size="2">New E-Mail:</font>
</td>
<td><font size="-1" color="#00009F">newbie@orange.fr</font>
</td>
<td><font face= "Arial" size="2"><input NAME="frmEmail" TYPE="TEXT" SIZE="40"></font>
</td>
</tr><tr>
<tr>
If you are a new user, please register by completing the following form: but
confirm first that you agree to the conditions of the forum
</font>
<label for="register">I agree to the terms of the forum</label>
<label for="register"><input type="checkbox" name="register" id="register" value="1" checked="checked">
Yes</label>
<td><input TYPE="HIDDEN" NAME="wname" VALUE="wvalue"></td>
<td><input NAME="OK" TYPE="SUBMIT" Value = REGISTER>
</td>
</tr>
</table>
</form>
<hr>
<%end if%>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> xxx </title>
</head>
<body bgcolor="#EEEEEE" TEXT="#000000">
<% If Request.Form("FrmNewusername") = "" Then %> <p><font face= "Arial" size="2">
You have not entered your First Name.</font>
You can try it <font face="Arial" background-color "#00FFFF">[ <a href onclick="window.history.back()">RETURN</span></a> ]</font>
again
<% ElseIf Request.Form("frmregister") = "" Then %><font face= "Arial" size="2">
Thank you but you did not agree to terms</font>
You can try it <font face="Arial" background-color "#00FFFF">[ <a href onclick="window.history.back()">RETURN</span></a> ]</font>
again
<% ElseIf Request.Form("frmEmail") = "" Then %><font face= "Arial" size="2">
Thank you but there is no lastname entered</font>
You can try it <font face="Arial" background-color "#00FFFF">[ <a href onclick="window.history.back()">RETURN</span></a> ]</font>
again
<% ElseIf Request.Form("frmNewpassword") = "" Then %><font face= "Arial" size="2">
Thank you but there is no email entered</font>
You can try it <font face="Arial" background-color "#00FFFF">[ <a href onclick="window.history.back()">RETURN</span></a> ]</font>
again
<% ElseIf Request.Form("frmNewusername") = "" Then %><font face= "Arial" size="2">
You forgot to enter your username <span lang="en-gb"></span>.</font>
<font face= "Arial" size="2">You can try it <font face="Arial" background-color "#00FFFF">
[ <a href onclick="window.history.back()">RETURN</span></a> ]</font> again
<% Else %>
</table>
<hr>
<%
vregister = Request.Form("frmRegister")
vregister = Replace(vregister, "'", "''")
vnewusername = Request.Form("frmNewusername")
vnewusername = Replace(vnewusername, "'", "''")
vnewpassword = Request.Form("frmNewpassword")
vnewpassword = Replace(vnewpassword, "'", "''")
vregister = Request.Form("frmregister")
vregister = Replace(vregister, "'", "''")
vemail = Request.Form("frmEmail")
vemail = Replace(vemail, "'", "''")
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open "nnfrance"
abf = "INSERT INTO [registration] ( register, newusername, email, newpassword ) VALUES " & "('" & Request.Form("frmNewusername") & "','"
abf = abf & Request.Form("frmEmail") & "', '"
abf = abf & Server.HTMLEncode (vregister) & "', '"
abf = abf & Server.HTMLEncode (vnewpassword) & ")"
Set RS = Conn.Execute(abf)
%>
<CENTER>
<br><br><br>
<center><TABLE border=2 cellPadding=18 cellSpacing=0 width=570>
<TBODY>
<p><b><font><h2><font color="#FF0000">Thank YOU <br> <%= Request.Form("frmNewusername") %></font>
<font face="Arial"></h2>
<h3>CONFIRMATION OF RECEIPT</h3>
</font></b><br>Thank you for your valuable contribution which is greatly
appreciated.<b><font ="arial" size="2"><bt> </b>
<br>
<p><font><i>Here is what you have sent us: </p></i></font>
<hr>
<font face= "Arial" size="2">
First Name:
<% vnewusername = Request.Form("frmNewusername") %>
<% vnewusername = Replace(vnewusername, VbCrLf, "<BR>") %>
<font color="#00009F"><%= vnewusername %> </font>
<br> Last Name:
<% vnewpassword = Request.Form("frmNewpassword") %>
<% vnewpassword = Replace(vnewpassword, VbCrLf, "<BR>") %>
<font color="#00009F"><%= vnewpassword %> </font>
<br> YES:
<% vregister = Request.Form("frmregister") %>
<% vregister = Replace(vregister, VbCrLf, "<BR>") %>
<font color="#00009F"><%= vregister %> </font>
<br> Email:
<% vemail = Request.Form("frmEmail") %>
<% vemail = Replace(vemail, VbCrLf, "<BR>") %>
<font color="#00009F"><%= vemail %> </font>
Please click here to return to
<a href="http://www.xxx.com">ccc</a>
</table>
<br>
<% End If %>
</html>
</body>
Please help - my email address is: tracy_wi@hotmail.com
eirrel
20 Posts
Re: Classic AsP - Writing a checkbox value to an Access Database
Feb 28, 2013 09:01 PM|LINK
Hi,
Based from your code, it looks like your control name is "register" while when you try to access it your calling it "frmregister".. make sure you name and call it the same way to get the correct value.
vregister = Request.Form("frmRegister") <input type="checkbox" name="register" id="register" value="1" checked="checked">Yes</label>you should stick to "register" or "frmregister" naming like..
vregister = Request.Form("frmregister") <input type="checkbox" name="frmregister" id="frmregister" value="1" checked="checked">Yes</label>""Wrong is wrong even if everyone is doing it; right is right even if no one is doing it."
tracy_wi
11 Posts
Re: Classic AsP - Writing a checkbox value to an Access Database
Mar 05, 2013 12:14 PM|LINK
Hi Eirrel
Thank you very much for your kind input - and yes I am very appreciative for your correction. By doing it as you asked, it does give my customer the confirmation that he has checked the box - but unfortunately, when I open the database it is still not entered. The database field is YES/No formatted as True/False. I have tried including an addition in the insert statement, showing the following:
<%
vregister = Request.Form("frmRegister")
vregister = Replace(vregister, "'", "''")
vnewusername = Request.Form("frmNewusername")
vnewusername = Replace(vnewusername, "'", "''")
vnewpassword = Request.Form("frmNewpassword")
vnewpassword = Replace(vnewpassword, "'", "''")
vemail = Request.Form("frmEmail")
vemail = Replace(vemail, "'", "''")
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open "nnfrance"
abf = "INSERT INTO [registration] ( register, newusername, email, newpassword ) VALUES " & "('" & Request.Form("frmNewusername") & "','"
abf = abf & Server.HTMLEncode (frmRegister) & "', '"
abf = abf & Request.Form("frmNewusername") & "', '"
abf = abf & Request.Form("frmEmail") & "', '"
abf = abf & Server.HTMLEncode (vnewpassword) & ")"
Set RS = Conn.Execute(abf)
%>
<CENTER>
<br><br><br>
<center><TABLE border=2 cellPadding=18 cellSpacing=0 width=570>
<TBODY>
<p><b><font><h2><font color="#FF0000">Thank YOU <br> <%= Request.Form("frmNewusername") %></font>
<font face="Arial"></h2>
<h3>CONFIRMATION OF RECEIPT</h3>
</font></b><br>Thank you for registering on our forum.<b><font ="arial" size="2"><bt> </b>
<br>
<p><font><i>Here is what you have sent us: </p></i></font>
<hr>
<font face= "Arial" size="2">
First Name:
<% vnewusername = Request.Form("frmNewusername") %>
<% vnewusername = Replace(vnewusername, VbCrLf, "<BR>") %>
<font color="#00009F"><%= vnewusername %> </font>
<br> Last Name:
<% vnewpassword = Request.Form("frmNewpassword") %>
<% vnewpassword = Replace(vnewpassword, VbCrLf, "<BR>") %>
<font color="#00009F"><%= vnewpassword %> </font>
<br> Email:
<% vemail = Request.Form("frmEmail") %>
<% vemail = Replace(vemail, VbCrLf, "<BR>") %>
<font color="#00009F"><%= vemail %> </font>
<br> Register:
<% vregister = Request.Form("frmRegister") %>
<% vregister = Replace(vregister, VbCrLf, "<BR>") %>
<font color="#00009F"><%= vregister %> </f
Please click here to return to
<a href="http://www.xxxx.com">www.xxxx.com</a>
</table>
<br>
<% End If %>
<% End If %>
...............................
But then I get the error message that there is a criteria mismatch. If I change the insert line from:
abf = abf & Server.HTMLEncode (vregister) & "', '"
to
abf = abf & Request.Form("frmRegister") & "', '"
I get the error message that there is a string error.
Can you help?
eirrel
20 Posts
Re: Classic AsP - Writing a checkbox value to an Access Database
Mar 05, 2013 01:23 PM|LINK
You have conflicts of how your fields arrange..
your code:
abf = "INSERT INTO [registration] ( register, newusername, email, newpassword ) VALUES " & "('" & Request.Form("frmNewusername") & "','" abf = abf & Server.HTMLEncode (frmRegister) & "', '" abf = abf & Request.Form("frmNewusername") & "', '" abf = abf & Request.Form("frmEmail") & "', '" abf = abf & Server.HTMLEncode (vnewpassword) & ")"please change to this..
abf = "INSERT INTO [registration] ( register, newusername, email, newpassword ) VALUES " & "('" abf = abf & Server.HTMLEncode(vregister) & "', '" abf = abf & Request.Form("frmNewusername") & "', '" abf = abf & Request.Form("frmEmail") & "', '" abf = abf & Server.HTMLEncode(vnewpassword) & "')"Few things to take note:
Hope that helps. :)
""Wrong is wrong even if everyone is doing it; right is right even if no one is doing it."
tracy_wi
11 Posts
Re: Classic AsP - Writing a checkbox value to an Access Database
Mar 06, 2013 08:30 AM|LINK
Hi Erriol - that is brilliant - the checkbox is now showing in the database each time there is an input! I am going to give below the whole code so that anyone else who is interested can try it out for themselves The database field for the checkbox is called "register" and the field type is yes/no and it is formated as true/false.
Thank you once again. I would be very pleased to have your email address - as I am in the process of designing a whole new forum. My email address is tracy_wi@hotmail.com - and I have not seen anyone else on the internet using the code in the same way, (A lot of ASP Classic is divided into different versions - but mine never matches them!)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<%@LANGUAGE="VBSCRIPT"%>
<head>
<title>xxxx</title></head>
<body bgcolor="#EEEEEE" TEXT="#000000">
<table align="center" cellSpacing="5" cellPadding="10" width="900">
<tr><td align=center>
<font size=7 color="#B08D00" face="Georgia"><b>login or register on our forum</font></td></tr>
<tr><td align="right" valign="bottom">
<b>
<font face= "Georgia" size=5 color="#000000">"To login to our Forum"</font></b><br><br>
</td>
</tr></table>
<hr width=900 size=0 color=#000000 align=center>
<%
' On Error Resume Next
If Request.Form("wname") = "" Then
' This part of the script enables a person
' to enter data in an HTML form.
%>
<div align=center>
<table border="0" valign="top" width="890" cellspacing=5 cellpadding=5 align="center">
<tr><td align=left>
<form METHOD="Post" ACTION="reg2.asp">
<table align="center" cellSpacing="5" cellPadding="10" width="900">
<font face= "Arial" size="2"><font face="Arial" size="2">
<tr>
<td><font face= "Arial" size="2">New Username:</font>
</td>
<td><font size="-1" color="#00009F">Newbie</font>
</td>
<td><font face= "Arial" size="2"><input NAME="frmNewusername" TYPE="TEXT" SIZE="15"></font>
</td>
</tr>
<tr>
<td><font face= "Arial" size="2">New Password:</font>
</td>
<td><font size="-1" color="#00009F">HiXXXXXX</font>
</td>
<td><font face= "Arial" size="2"><input NAME="frmNewpassword" TYPE="TEXT" SIZE="40"></font>
</td>
</tr>
<tr>
<td><font face= "Arial" size="2">New E-Mail:</font>
</td>
<td><font size="-1" color="#00009F">newbie@orange.fr</font>
</td>
<td><font face= "Arial" size="2"><input NAME="frmEmail" TYPE="TEXT" SIZE="40"></font>
</td>
</tr><tr>
<tr>
If you are a new user, please register by completing the following form: but confirm first that you agree to the conditions of the forum
</font>
<input type="checkbox" name="frmregister" id="frmregister" value="1" checked="checked">Yes</label
<b>I agree to the terms of the forum.</b>
</font>
<td><input TYPE="HIDDEN" NAME="wname" VALUE="wvalue"></td>
<input name="register" type="hidden" value="1">
<td><input NAME="OK" TYPE="SUBMIT" Value ="REGISTER">
</td>
</tr>
</table>
</form>
<hr>
<% Else
' This part of the acript shows the person
' the selection.%>
</body>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>xxxx</title>
</head>
<body bgcolor="#EEEEEE" TEXT="#000000">
<% If Request.Form("FrmNewusername") = "" Then %> <p><font face= "Arial" size="2">You have not entered your First Name.</font>
You can try it <font face="Arial" background-color "#00FFFF">[ <a href onclick="window.history.back()">RETURN</span></a> ]</font> again
<% ElseIf Request.Form("frmRegister") = "" Then %><font face= "Arial" size="2"> Thank you but there is no agreement to the forum</font>
You can try it <font face="Arial" background-color "#00FFFF">[ <a href onclick="window.history.back()">RETURN</span></a> ]</font> again
<% ElseIf Request.Form("frmEmail") = "" Then %><font face= "Arial" size="2"> Thank you but there is no email entered</font>
You can try it <font face="Arial" background-color "#00FFFF">[ <a href onclick="window.history.back()">RETURN</span></a> ]</font> again
<% ElseIf Request.Form("frmNewpassword") = "" Then %><font face= "Arial" size="2"> Thank you but there is no password</font>
You can try it <font face="Arial" background-color "#00FFFF">[ <a href onclick="window.history.back()">RETURN</span></a> ]</font> again<br>
<% Else %>
</table>
<hr>
<%
vregister = Request.Form("frmRegister")
vregister = Replace(vregister, "'", "''")
vnewusername = Request.Form("frmNewusername")
vnewusername = Replace(vnewusername, "'", "''")
vemail = Request.Form("frmEmail")
vemail = Replace(vemail, "'", "''")
vnewpassword = Request.Form("frmNewpassword")
vnewpassword = Replace(vnewpassword, "'", "''")
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open "nnfrance"
abf = "INSERT INTO [registration] ( register, newusername, email, newpassword ) VALUES " & "('"
abf = abf & Server.HTMLEncode(vregister) & "', '"
abf = abf & Request.Form("frmNewusername") & "', '"
abf = abf & Request.Form("frmEmail") & "', '"
abf = abf & Server.HTMLEncode(vnewpassword) & "')"
Set RS = Conn.Execute(abf)
%>
<CENTER>
<br><br><br>
<center><TABLE border=2 cellPadding=18 cellSpacing=0 width=570>
<TBODY>
<p><b><font><h2><font color="#FF0000">Thank YOU <br> <%= Request.Form("frmNewusername") %></font>
<font face="Arial"></h2>
<h3>CONFIRMATION OF RECEIPT</h3>
</font></b><br>Thank you for your registration to the forum.<b><font ="arial" size="2"><bt> </b>
<br>
<p><font><i>Here is what you have sent us: </p></i></font>
<hr>
<font face= "Arial" size="2">
<br> Checkbox:
<% vregister = Request.Form("frmRegister") %>
<% vregister = Replace(vregister, VbCrLf, "<BR>") %>
<font color="#00009F"><%= vregister %> </font>
Username:
<% vnewusername = Request.Form("frmNewusername") %>
<% vnewusername = Replace(vnewusername, VbCrLf, "<BR>") %>
<font color="#00009F"><%= vnewusername %> </font>
<br> Password:
<% vnewpassword = Request.Form("frmNewpassword") %>
<% vnewpassword = Replace(vnewpassword, VbCrLf, "<BR>") %>
<font color="#00009F"><%= vnewpassword %> </font>
<br> Email:
<% vemail = Request.Form("frmEmail") %>
<% vemail = Replace(vemail, VbCrLf, "<BR>") %>
<font color="#00009F"><%= vemail %> </font>
<br>Please click here to return to
<a href="http://xxx.com">www.xxxx.com</a>
</table>
<br>
<% End if %>
<% End if %>
</html>
</body>
eirrel
20 Posts
Re: Classic AsP - Writing a checkbox value to an Access Database
Mar 06, 2013 01:23 PM|LINK
Hi Tracy,
I am glad I help you. :) Yes, feel free to send me an email, and i will reply as I could. I'll send you my contact in PM.
""Wrong is wrong even if everyone is doing it; right is right even if no one is doing it."