Ask a Question related to ASP.NET General, Design and Development.
-
AJ #1
_Deleted
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
AJ Guest
-
William F. Robertson, Jr. #2
Re: _Deleted
What did the stack trace look like on that exception?
bill
"AJ" <a@b.com> wrote in message
news:034601c357a1$19707f20$a401280a@phx.gbl...> 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
William F. Robertson, Jr. Guest



Reply With Quote

