0

我有 2 个 .aspx 页,

第一页(1)插入数据.....

第二页 (2) 使用 gridview 查看数据

gridview 中有一个编辑按钮,它将重定向到page(1)并根据所选记录将特定值加载到文本框、下拉列表中。

会话用于执行从第(1)页到第(2)页的记录。

page(1)的页面加载中,如果Session 不为 NULL,它会将值加载到文本框等。

我的问题是,我在其中一个下拉菜单中启用了Autopostback=true (以在选择特定选项时启用更多的文本框)。

So when those options are selected page will be reloaded,when reloading it will load the specific values to the textboxes .... as the Session is not null. 并且下拉列表的目的没有实现,因为它不断将值加载到文本框,但没有启用我需要出现的文本框+所选下拉列表的值不会更改为所选值,因为它将值从数据库加载到下拉菜单。

有什么解决办法吗?

4

1 回答 1

0

我听起来您正在寻找部分回发解决方案。UpdatePanel 应该为您解决这个问题: http ://www.encodedna.com/2013/02/aspdotnet.postback-updatepanel.htm

于 2013-09-25T03:33:11.887 回答