[Mono-bugs] [Bug 62268][Wis] New - Incorrect forms data handling in Opera 6.0x

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Mon, 2 Aug 2004 06:06:09 -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 mono-bug@jerryweb.info.

http://bugzilla.ximian.com/show_bug.cgi?id=62268

--- shadow/62268	2004-08-02 06:06:09.000000000 -0400
+++ shadow/62268.tmp.23123	2004-08-02 06:06:09.000000000 -0400
@@ -0,0 +1,46 @@
+Bug#: 62268
+Product: Mono: Class Libraries
+Version: unspecified
+OS: GNU/Linux [Other]
+OS Details: Gentoo
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Wishlist
+Component: Sys.Web
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: mono-bug@jerryweb.info               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Incorrect forms data handling in Opera 6.0x
+
+Description of Problem:
+Forms data sent from Opera 6.0x browser does not appear in the Request.Form
+collection
+
+Steps to reproduce the problem:
+Try to sent a data through the following ASP.NET page:
+
+==========================================
+<%@ Page %>
+<html>
+<body>
+Request.Form.AllKeys.Length: <%= Request.Form.AllKeys.Length %>
+<form method="POST">
+<input type="text" name="aaa" />
+<input type="submit" />
+</form>
+</body>
+</html>
+==========================================
+
+Actual Results:
+
+Opera 6.05 (Win32):
+Request.Form.AllKeys.Length: 0
+
+Opera 7.53(Win32), Firefox 0.9.2 (Win32), MSIE6SP1, Konqueror 3.2.2
+(Gentoo)...:
+Request.Form.AllKeys.Length: 1