This may be pretty basic, but here goes --
I have a table in Access 97 that is a yes/no checkbox where if the box is checked, it means "yes".
My HTML document shows:
and in the asp "update" my error points to the line reading
With the following error:
Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done.
When I wish to display this code in a table, this property hangs up again. The phrase
never gets the X where it should be. I have tried objRS("prefezec"
<> "whatever" and gotten the "X" to display everywhere.
Any ideas? This is driving me nuts.
I have a table in Access 97 that is a yes/no checkbox where if the box is checked, it means "yes".
My HTML document shows:
Code:
<tr><TD>Pref EZ/EC?</TD><td><INPUT TYPE=CHECKBOX NAME="prefezec" VALUE="yes"></TD></TR>
and in the asp "update" my error points to the line reading
Code:
objRS("prefezec") = Request.Form("prefezec")
With the following error:
Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done.
When I wish to display this code in a table, this property hangs up again. The phrase
Code:
If objRS("prefezec") = "yes" Then
Response.Write "<TD> X </TD>"
Else
Response.Write "<TD> </TD>"
End if
never gets the X where it should be. I have tried objRS("prefezec"
Any ideas? This is driving me nuts.