_Deleted

  • Thread starter Thread starter AJ
  • Start date Start date
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
 
What did the stack trace look like on that exception?

bill
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top