A
AJ
I got an error page (runtime error) on my ASP app, stating
that the _Deleted field was not found.
Now, I never declared a _Deleted field, so I'm assuming it
should exist somewhere in the inherited 'Page' class (or
one of its parents/ancestors).
I stopped the runtime error by including:
<code>
public static String _Deleted
{
get
{
return "true";
}
}
</code>
but, not knowing what this field is, or what caused the
error, I don't want to include this little hack.
Does anyone know what this is all about. I'd appreciate
any help.
Thanks,
AJP
that the _Deleted field was not found.
Now, I never declared a _Deleted field, so I'm assuming it
should exist somewhere in the inherited 'Page' class (or
one of its parents/ancestors).
I stopped the runtime error by including:
<code>
public static String _Deleted
{
get
{
return "true";
}
}
</code>
but, not knowing what this field is, or what caused the
error, I don't want to include this little hack.
Does anyone know what this is all about. I'd appreciate
any help.
Thanks,
AJP