[Mono-bugs] [Bug 379148] New: Problem with form action property when doing postback

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Fri Apr 11 09:40:18 EDT 2008


https://bugzilla.novell.com/show_bug.cgi?id=379148


           Summary: Problem with form action property when doing postback
           Product: Mono: Class Libraries
           Version: 1.9.0
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Major
          Priority: P5 - None
         Component: Sys.Web
        AssignedTo: mhabersack at novell.com
        ReportedBy: informatique.internet at fiducial.fr
         QAContact: mono-bugs at lists.ximian.com
          Found By: ---


This bug is not present in SVN version of mono and it's only reproducible with
mono 1.9. This bugs breaks all of our web apps and with this we can't upgrade
to 1.9...
it affect .NET 1.1 and .NET 2.0 profile

Very simple to reproduce :

Try this aspx :

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
        <title>Default</title>
</head>
<body>
        <form id="form1" runat="server">
        <asp:LinkButton id="lnkButton1" Text="cliquez ici"
runat="server"></asp:LinkButton>
        </form>
</body>
</html>

run XSP 

and launch http://localhost/Default.aspx?test

the form element is well generated : 
<form name="form1" method="post" action="Default.aspx?test" id="form1">

click on "cliquez ici"

and look to the form element
<form name="form1" method="post" action="Default.aspxtest" id="form1">

the "?" has disappear
so if you reclick on "cliquez ici" it'll fail

I think this is an important problem/regression that should be fixed quickly

thanks


-- 
Configure bugmail: https://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