Hi,
I'm trying to add an event in "List page: After record processed" but whatever code I add and Save, I get SQL error notification in bottm right "Error log"
My event is the following, just simple change background colo:
//---Change background color based on data value
if (data["R_F_VSTD"] > 0)
{
record["R_F_VSTD_css"] = "background:#DBFFD6;"; //Green
}
else
{
record["R_F_VSTD_css"] = "background:#FFFFFF;"; //White
}
Compilation is OK
Web site execution of the event is OK
Only Error log is not ok
After I compile and clear the error log, Errors disappeare but as soon I edit an event vent adding a space ... event errors come out again
I'm using ASPRunner.NET 11.0 Ent build 42329
Thanks a lot
Eros