asp.net 下拉列表框不保存视图状态
我正在使用 VS 2008、VB 并在我的 asp.net 网页中使用 dorpdown 列表框。我从下拉列表中选择一个值,单击提交按钮,当页面从服务器返回时,下拉列表中的值为空(默认)。下拉控件视图状态已启用。
提交按钮的代码是:
<asp:Button ID="ButtonSubmit" runat="server" Text="Submit" CssClass="Button" />
下拉列表代码是:
我在这里缺少什么?
I am using VS 2008, VB and using a dorpdown listbox in my asp.net webpage. I select a value from the dropdown, click the submit button, when the page comes back from the server, the value in the dropdown is blank (default). The dropdown controls viewstate is enabled.
The code for the submit button is:
<asp:Button ID="ButtonSubmit" runat="server" Text="Submit" CssClass="Button" />
The dropdownlist code is:
What am I missing here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否在 page_load 事件中绑定下拉列表?如果是,则将该代码移入
are you binding dropdown in page_load event? If yes move that code in