如何在 ASP.NET 中将对象保存到 HiddenField?

发布于 2024-10-07 02:55:26 字数 108 浏览 2 评论 0原文

我里面有 updatePanel 和 hideField 。我需要将对象保存到隐藏字段而不需要完整的回溯(仅 updatePanel 更新)。 ViewState 无法提供帮助,因为它仅适用于完整回发。

I have updatePanel and hiddenField in it. I need to save object to hiddenField without full pastback (only updatePanel updating).
ViewState can't help, because it works only with full postback.

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

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

发布评论

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

评论(1

静赏你的温柔 2024-10-14 02:55:26

将 HiddenField 控件和触发您设置值的事件的控件放在 UpdatePanel 的 ContentTemplate 标记内。当您将这些内容放入 ContentTemplate 标记中时,它将异步回发,并且在您的代码隐藏中您将能够执行类似的操作...

yourHiddenField.Value = strSerializedVersionOfYourObject;

请注意,HiddenField 控件的 Value 属性的类型是字符串,因此如果你想在其中存储一个对象,你必须将它序列化为字符串,当你准备使用它时,将它反序列化回你的对象。

Put the HiddenField control and the control that triggers the event where you set the value within the ContentTemplate tags of the UpdatePanel. When you put those within the ContentTemplate tags it will post back asyncronously and in your code-behind you will be able to do something like...

yourHiddenField.Value = strSerializedVersionOfYourObject;

Note that the type of the Value property of a HiddenField control is a string, so if you want to store an object in it, you'll have to serialize it as a string and when you are ready to use it, deserialize it back into your object.

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