I have a page (contentpage inside a masterpage) that i put all components inside a updatepanel. Some actions work fine and also refresh the screen, in the page some events work fine but screen is not refreshed. I have to reload the page to see refreshed
page.
Any idea?
PS : there are following components used in the page;
- Telerik radscheduler
- Devexpress Calendar, timepicker, tabcontrol....
- Ajax update panel, updateprogress
one more PS : few seconds ago, i tested through visual studio 2010 on my computer and it worked! but it still not works on remote server on IIS.
The following list describes the property settings of the UpdatePanel control that determine when a panel's content is updated during partial-page
rendering.
If the UpdateMode property is set to
Always, the
UpdatePanel control’s content is updated on every postback that originates from anywhere on the page. This includes asynchronous postbacks from controls
that are inside other UpdatePanel controls, and postbacks from controls that are not inside
UpdatePanel controls.
If the UpdateMode property is set to
Conditional, the
UpdatePanel control’s content is updated when one of the following is true:
When the postback is caused by a trigger for that UpdatePanel control.
When the UpdatePanel control is nested inside another
UpdatePanel control and the parent panel is updated.
When the ChildrenAsTriggers property is set to
true and any child control of the UpdatePanel control causes a postback. Child controls of nested
UpdatePanel controls do not cause an update to the outer
UpdatePanel control unless they are explicitly defined as triggers for the parent panel.
</div>
Chetan Sarode
Senior Software Engineer,
Approva Systems Pvt Ltd, Pune, India.
Marked as answer by mcbulan on Feb 05, 2013 08:41 AM
mcbulan
Member
58 Points
102 Posts
a weird problem (click works inside updatepanel but not showing)
Feb 04, 2013 05:37 PM|LINK
Hi all,
I have a page (contentpage inside a masterpage) that i put all components inside a updatepanel. Some actions work fine and also refresh the screen, in the page some events work fine but screen is not refreshed. I have to reload the page to see refreshed page.
Any idea?
PS : there are following components used in the page;
- Telerik radscheduler
- Devexpress Calendar, timepicker, tabcontrol....
- Ajax update panel, updateprogress
one more PS : few seconds ago, i tested through visual studio 2010 on my computer and it worked! but it still not works on remote server on IIS.
chetan.sarod...
All-Star
65619 Points
11118 Posts
Re: a weird problem (click works inside updatepanel but not showing)
Feb 05, 2013 02:42 AM|LINK
How UpdatePanel Controls Are Refreshed
<div class="subsection">The following list describes the property settings of the UpdatePanel control that determine when a panel's content is updated during partial-page rendering.
-
-
-
-
-
-
</div>If the UpdateMode property is set to Always, the UpdatePanel control’s content is updated on every postback that originates from anywhere on the page. This includes asynchronous postbacks from controls that are inside other UpdatePanel controls, and postbacks from controls that are not inside UpdatePanel controls.
If the UpdateMode property is set to Conditional, the UpdatePanel control’s content is updated when one of the following is true:
When the postback is caused by a trigger for that UpdatePanel control.
When you explicitly call the UpdatePanel control's Update method.
When the UpdatePanel control is nested inside another UpdatePanel control and the parent panel is updated.
When the ChildrenAsTriggers property is set to true and any child control of the UpdatePanel control causes a postback. Child controls of nested UpdatePanel controls do not cause an update to the outer UpdatePanel control unless they are explicitly defined as triggers for the parent panel.
Senior Software Engineer,
Approva Systems Pvt Ltd, Pune, India.