I see the problem in master page having scriptmanager's property of enablepartialrendering as false.
On Sep 22, 4:22 pm, jakkiss <[email protected]> wrote: > hi, > i have one problem with my WebSolution. > > I have one MasterPage > ... > <form runat="server"> > <asp:ScriptManager ID="MainScriptManager" runat="server" > EnablePartialRendering="false" /> > <asp:ContentPlaceHolder ID="MainContent" runat="server" /> > </form> > ... > > and one Default page > .... > <asp:Content ID="Content2" ContentPlaceHolderID="MainContent" > runat="server"> > <asp:UpdatePanel ID="UpdatePanel1" runat="server" > UpdateMode="Conditional"> > <ContentTemplate> > <asp:Label runat="server" ID="lblHelloWorld" > Text="Click the button!" /> > <asp:Button runat="server" ID="btnHelloWorld" > Text="Update label!" > onclick="btnHelloWorld_Click" /> > </ContentTemplate> > <Triggers> > <asp:AsyncPostBackTrigger ControlID="btnHelloWorld" > EventName="click" /> > </Triggers> > </asp:UpdatePanel> > </asp:Content> > > I do not want one refresh of all page but only my UpdatePanel ... > > Where is the error?
