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?

-- 
You received this message because you are subscribed to the Google Groups "Dot 
Net Discussions" group.
To post to this group, send email to dot-net-discussi...@googlegroups.com.
To unsubscribe from this group, send email to 
dot-net-discussions+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/dot-net-discussions?hl=en.

Reply via email to