I've been locked out of a form after making a few minor alterations. The changes involved mainly client side and going from this kind of format (for various reasons)
function btnConfirm_onclick()
{
....
}
to
function btnConfirm_onclick()
{
doIt();
}
function doIt()
{
......
}
As you can see, no recordset changes, in fact no significant changes at all. The error I get is noted below.
Error Type:
Microsoft Cursor Engine (0x80040E21)
Multiple-step operation generated errors. Check each status value.
/SQS_new/_ScriptLibrary/Recordset.ASP, line 424
I've not got a clue what it means and the MS knowledge base was as useless as ever...can anyone help?
Matt
All the people in all the world and I had to be me.
function btnConfirm_onclick()
{
....
}
to
function btnConfirm_onclick()
{
doIt();
}
function doIt()
{
......
}
As you can see, no recordset changes, in fact no significant changes at all. The error I get is noted below.
Error Type:
Microsoft Cursor Engine (0x80040E21)
Multiple-step operation generated errors. Check each status value.
/SQS_new/_ScriptLibrary/Recordset.ASP, line 424
I've not got a clue what it means and the MS knowledge base was as useless as ever...can anyone help?
Matt
All the people in all the world and I had to be me.