[Mono-bugs] [Bug 59480][Cri] New - SegFault doing a Server.Transfer in an xsp application
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Wed, 2 Jun 2004 14:40:56 -0400 (EDT)
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by jb@evain.net.
http://bugzilla.ximian.com/show_bug.cgi?id=59480
--- shadow/59480 2004-06-02 14:40:56.000000000 -0400
+++ shadow/59480.tmp.31041 2004-06-02 14:40:56.000000000 -0400
@@ -0,0 +1,56 @@
+Bug#: 59480
+Product: Mono: Class Libraries
+Version: unspecified
+OS: Debian Woody
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Critical
+Component: Sys.Web
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: jb@evain.net
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: SegFault doing a Server.Transfer in an xsp application
+
+Mono SegFault while doing a Server.Transfer in an xsp application, ie not
+in xsp root (/:).
+
+Steps to reproduce the problem:
+1. Test the page :
+<%@ language="C#" %>
+<html>
+<script runat=server>
+ void Clicked (object o, EventArgs e)
+ {
+ Server.Transfer("index.aspx");
+ }
+</script>
+<head>
+<title>Button</title>
+</head>
+<body>
+<form runat="server">
+<asp:Button id="btn"
+ Text="Submit"
+ OnClick="Clicked"
+ runat="server"/>
+</form>
+</body>
+</html>
+
+Actual Results:
+SegFault
+
+Expected Results:
+Transfer of the page
+
+How often does this happen?
+Always
+
+Additional Information:
+It does not segfault if the page is in the root application
+It worked in O.31