| Added: July/09/2008 at 10:13am | IP Logged
|
|
|
Hi Chris,
This is my first post so i wish myself good luck. ;-)
-----
I added a customized Checkbox(es) on each of the Users table and Groups table.
For instance the new field is "Group_Public_View" in groups table.
I added the following code into the "edit_group.asp" page:
<input type="checkbox" name="Group_Public_View" value="True" <% If CmdEditGroup("Group_Public_View") then %><% Response.Write (" checked")%><% End If %>>
I did the similar for the Users table as below:
<input type="checkbox" name="Group_Leader" value="True" <% If Group_Leader then %><% Response.Write (" checked")%><% End If %>>
The problem is; when I save these pages, it saves the info fine as long as I check these boxes (True), but if I uncheck a box (on edit_group.asp for instance) I get the following error:
Microsoft OLE DB Provider for ODBC Drivers error '80040e21'
Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done.
/account/admin/save_group.asp, line 445
and the following on "edit.asp"
Microsoft OLE DB Provider for ODBC Drivers error '80040e21'
Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done.
/account/admin/save.asp, line 420
------
So, please tell me how I can get around these errors and make these checkboxes work seamlessly.
Btw, I am not an ASP programmer, as you can image. I wish i was.
Thanks a million for your help.
Cheers, A. ;-)
|