|
|
|
|
|
| | |
|
Active Server Pages help tutorial how to ASP Help ASP Tutorials ASP Programming ASP Code - ASP Free CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
Subject: |
Convert Checkbox Values |
From: |
Daniel Acuff |
Date: |
2/11/2000 3:28:42 PM |
IP: |
12.14.72.197 |
I have a form with 18 checkboxes and I need to change the value of the checkboxes from TRUE/FALSE to a 1 or a 0. This is because I was told to enter the data into the SQL fields as DataType bit for the benefit of being able to do boolean searches.
This is the code I currently have on the processing asp page which I am calling from the page with the form.
Even after processing it with this code it still writes back the values as TRUE or FALSE.
Any ideas? (Does this code HAVE to be processed through a function on the page the form is on? i.e. function, would that make a difference?)
<%
Dim html
if request.form("checkbox1") = "on" then
tempVar = 1
else
tempVar = 0
end if
html= Request.Form("checkbox1")
Response.Write html
%>
Thanks,
Daniel |
Follow Up - Re: Convert Checkbox Values - David Churchyard 2/14/2000 11:43:29 AM
Follow Up - Re: Convert Checkbox Values - David Churchyard 2/14/2000 11:45:44 AM
|
|

|
|
|
|
|
|
|
|
|
|