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.
我面临一个奇怪的问题,我在页面加载时使用 ViewState 条件检查动态加载用户控件,如果为真则加载它,否则不加载。现在问题出在下拉选择的索引更改事件上,我将 NULL 设置为视图状态,但页面加载首先开始,它看到视图状态不为空,所以它再次加载控件,如何解决这个问题,请让知道如何解决它。
设置一个布尔值并将其保存在视图状态中?它不漂亮,但网络表单也不漂亮。:)
为什么不在页面 PreRender 事件中加载用户控件。这应该可以解决您的问题。如果没有,请给出代码背后的页面。