why this doesn't work anymore in my web control? it just throws a yellow error without any information about the code line. but just at this page... other errors are visible on other pages, it's enabled in web.config.
strange is I don't know what I have changed but I think before a week that was running.. It seems a problem with:
private int _value;
regards, thanks.
private int _value;
public int Value
{
get
{
return _value;
}
set
{
_value = value;
}
}