如何在回发之间保留 gridview 的状态?
我有一个由下拉列表填充的网格视图。我将单元格中的文本更改为列表中所选的项目。当我做出第二个选择时,第一个选择就会被删除。任何想法将不胜感激。 谢谢
I have a gridview that is populated by drop down lists. I change the text in the cell to the chosen item in the list. When I make a second choice the first one is erased. Any thoughts would be appreciated.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你有EnableViewState = true吗?
您还在 page_load 的 IsPostBack === true 上进行初始数据绑定吗? IE 你不会在每次回发时重新绑定它......
Do you have the EnableViewState = true?
Also are you doing the initial databind on the IsPostBack === true of the page_load? I.E. You are not rebinding it on EVERY postback...