Delphi ASP.Net 中的 SQL Viewstate - 如何重写 PageStatePersister

发布于 2024-11-01 05:08:43 字数 592 浏览 1 评论 0原文

我正在遵循将视图状态存储在数据库中的示例。然而,我已经到了页面的末尾,它要求我覆盖一个属性..我不知道如何在delphi中实现这一点。有人能指出我正确的方向吗?

我正在使用母版页设置和 .NET 2.0

DB 中的视图状态

编辑:有关更多信息,这是我尝试过的:

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

但不会调用 GetPageStatePersister 内的代码。

谢谢。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

云柯 2024-11-08 05:08:43

好的,设法解决了这个问题。使用 .NET Reflecter,我深入挖掘了 System.Web.UI.Page 程序集,发现该函数名为 get_PageStatePersiter,所以我刚刚完成了:

function get_PageStatePersister: PageStatePersister; override;

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;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文