Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个asp 网页,我的页面包含RadCombobox。对于第一个下拉菜单,我设置了 item_requested 方法(当用户单击它并选择剧院名称时。它有一个回发,回发后第二个下拉菜单填充无数字)。 我的问题在这里: 在页面回发后,我的页面中的第二个字段设置重复。在这些图片中你可以看到。 回帖前:
第二张图片:(回发后第二个 fielset 重复)
注意: 我在更新面板中的所有控件。从我的页面中删除更新面板后,我不会再次发生。你知道原因吗?:[
您可能有一些添加此组件的逻辑。在将组件添加到页面之前尝试检查 IsPostBack。就像这样:
if (!IsPostBack) { //dynamically add component }
protected void Page_Load(object sender, EventArgs e) { if (IsPostBack == false) { // ASPX C# } }
ASP ....................我不擅长 ASP