如何在 ASP.NET 中将对象保存到 HiddenField?
我里面有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 HiddenField 控件和触发您设置值的事件的控件放在 UpdatePanel 的 ContentTemplate 标记内。当您将这些内容放入 ContentTemplate 标记中时,它将异步回发,并且在您的代码隐藏中您将能够执行类似的操作...
请注意,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...
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.