Hi!!
Let me check a field before updating the table
Table "proposal" has the following fields
keyprop
name
dataproposta
id_stato
id_stato can have 1 or 2 or 3
id_stato is a numeric field, and if > 1 should not update the table.
I entered this code in
Edit Page - Before record update
Function BeforeEdit(dict, where, oldvalues,keys,message,inline)
liv = (SESSION("GroupID"))
If liv = 1 or dict("id_stato") > 1 then
BeforeEdit = false
Response.Write "False"
else
BeforeEdit = True
Response.Write "True"
end if
is Id_stato the problem?
thanks