I am following this example of storing the view state in the database. However, I have come to the end of the page and its asking me to override a property .. I have no idea how to achieve this in delphi. Can someone point me in the right direction?

I am using a Masterpage setup and .NET 2.0

View State in DB

EDIT: For more information, this is what I have tried:

TDefault = class(System.Web.UI.Page)
   //Code excluded
public
   function GetPageStatePersister: PageStatePersister; 
   property PageStatePersister: PageStatePersister read GetPageStatePersister;
end;

But the code inside GetPageStatePersister isn't called.

Thanks.

link|improve this question

Is this Delphi.NET, or Delphi Prism? Can you post the snippet of code that's causing the issue? It would be much easier to help with that information. Thanks. – John Kaster Apr 13 '11 at 4:23
I don't have any code to post, I am trying to translate the code in the bottom of the link I posted into Delph.NET code ... I just don't know how ... – webnoob Apr 13 '11 at 6:53
feedback

1 Answer

Ok, managed to sort this out. Using .NET Reflecter I dug through the System.Web.UI.Page assembly and found that the function is called get_PageStatePersiter so I have just done:

function get_PageStatePersister: PageStatePersister; override;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.