[Mono-bugs] [Bug 542441] New: asp:UpdatePanel - problem (throw System.Web.HttpUnhandledException)

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Sat Sep 26 06:33:52 EDT 2009


http://bugzilla.novell.com/show_bug.cgi?id=542441


           Summary: asp:UpdatePanel - problem (throw
                    System.Web.HttpUnhandledException)
    Classification: Mono
           Product: Mono: Class Libraries
           Version: 2.4.x
          Platform: PC
        OS/Version: openSUSE 11.1
            Status: NEW
          Severity: Major
          Priority: P5 - None
         Component: Sys.Web
        AssignedTo: mhabersack at novell.com
        ReportedBy: vinca.lucian at gmail.com
         QAContact: mono-bugs at lists.ximian.com
          Found By: ---


Created an attachment (id=320023)
 --> (http://bugzilla.novell.com/attachment.cgi?id=320023)
the vs2008 project that generate the error and a print screen inside the zip,
with the error

Description of Problem:
I use openSUSE 11.1 VMWare image which includes Mono 2.4.2.3. I create a very
simple application: I have an "UpdatePanel" that contain in "ContentTemplate" a
button, a Label and another "UpdatePanel" control.

        <asp:UpdatePanel ID="UpdatePanel1" runat="server">
            <ContentTemplate>
                <asp:Button ID="Button1" runat="server" Text="Button"
OnClick="Button1_Click" />
                <asp:Label ID="lbl" runat="server"></asp:Label>
                <asp:UpdatePanel ID="UpdatePanel2" runat="server" >
                    <ContentTemplate>

                    </ContentTemplate>
                </asp:UpdatePanel>
            </ContentTemplate>
        </asp:UpdatePanel>

        protected void Button1_Click(object sender, EventArgs e)
        {
            lbl.Text = "some text for test";
        }

On Click on button, the System.Web.HttpUnhandledException is throw.

Steps to reproduce the problem:
1. Click on button. (I use IE 8, and Firefox 3.0.14)



Actual Results:
Error. throw System.Web.HttpUnhandledException.

Expected Results:
On click on button, the label text should set with: "some text for test".

How often does this happen? 
everytime

Additional Information:
i attach the VS2008 project.

-- 
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.


More information about the mono-bugs mailing list