Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
. . .
Dim adAffectCurrent
adAffectCurrent = 1
rsCarsForSale.MoveFirst
If Request.Form("car_id").Count > 0 Then
FOR iCar = 1 to Request.Form("car_id").Count
rsCarsForSale.Find "VehicleIDNumber = " & Request.Form("car_id")(iCar)
rsCarsForSale.Delete adAffectCurrent
rsCarsForSale.Update
rsCarsForSale.MoveFirst
Next
End If
. . .
rsCarsForSale.Find "VehicleIDNumber = '" & Request.Form("car_id")(iCar) & "'"
if( document.forms[0].elements[i].name == "car_id" &&
document.forms[0].elements[i].checked == true ) {}
<input type="checkbox" name="car_id" value="12346">Blue Chevy
<input type="checkbox" name="car_id" value="7890">Red Ford
<input type="checkbox" name="car_id" value="8901234">Green Jaguar
//JScript
if(Request.Form("field_name") != "") {
//The box named field_name was checked.
}
'VBScript
If Not IsEmpty( Request.Form("field_name") ) Then
'The box was checked.
End If