HiddenField 控件维护视图状态
我有一个奇怪的问题。 填充表单字段时,单击“提交”按钮时会保留这些值,从而使页面进入下一个阶段。 我尝试在单击“查找”按钮时从后面的代码填充隐藏字段(在单击此“提交”按钮之前,这可以工作。但是当单击“提交”按钮时,该值不会保留在隐藏字段中知道
这是为什么吗
?
I have a strange problem. While populating formfields, the values are maintained when clicking a'submit' button that causes the page to proceed to the next stage. I try to populate a hidden field from the code behind on the event of a 'find 'button click (before clicking this 'submit' button and this works. But the value is not maintained within the hidden field when clicking the 'submit' button of that page.
Any ideas why this is?
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
(编辑以澄清)提交表单时,表单字段的值将发布回服务器。 如果您有一个设置为隐藏类型的输入,并且设置了它的值,以便它在源中呈现(点击查找按钮后查看源),那么新值也会回发。
检查是否是这种情况,或者是否有其他内容覆盖了该值。
(Edit to clarify) The value of form fields gets posted back to the server when the form is submitted. If you have an input that is set as type hidden and you set the value of it such that it renders in the source (look at the source after hitting your find button) then the new value will post back as well.
Check if this is the case or if you have anything else overwriting the value.