个位大虾,帮我看看: 为什么我用了 UpdatePanel 套住一个button ,点击Button还总是页面刷新。 关键代码是这样: <asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <asp:Button ID="btnupdate" runat="server" CssClass="inputbutton" Text="维护" onclick="btnupdate_Click" /> </ContentTemplate> </asp:UpdatePanel>还有我的是VS08,SCRIPTMANAGER已经放在页面上了
2 回答
一只甜甜圈
TA贡献1836条经验 获得超5个赞
首先,ScriptManager 控件的 EnablePartialRendering 属性必须为 true
由于UpdatePanel默认的UpdateMode是Always,如果页面上有一个局部更新被触发,则所有的UpdatePanel都将更新,你要想实现局部刷新需要把UpdateMode设置为Conditional。
- 2 回答
- 0 关注
- 280 浏览
添加回答
举报
0/150
提交
取消