This topic is locked
[SOLVED]

ASPRunner.NET 11.0: are events available?

8/26/2024 4:10:57 AM
ASPRunner.NET General questions
E
erosolmi author

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

img alt

E
erosolmi author 8/27/2024

Closing AspRunner and openng again, problem is not occurring even when changing event code.