[Mono-bugs] [Bug 51760][Nor] New - smartNavigation Page attribute throwing exception (MONO should ignore this attribute)

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Tue, 1 Jun 2004 05:10:23 -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 davidandrewtaylor@hotmail.com.

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

--- shadow/51760	2004-06-01 05:10:23.000000000 -0400
+++ shadow/51760.tmp.23101	2004-06-01 05:10:23.000000000 -0400
@@ -0,0 +1,50 @@
+Bug#: 51760
+Product: Mono: Class Libraries
+Version: unspecified
+OS: unknown
+OS Details: 
+Status: VERIFIED   
+Resolution: FIXED
+Severity: 001 One hour
+Priority: Normal
+Component: Sys.Web
+AssignedTo: jackson@ximian.com                            
+ReportedBy: davidandrewtaylor@hotmail.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: smartNavigation Page attribute throwing exception (MONO should ignore this attribute)
+
+Description of Problem:
+.NET 1.0/1.1 has a page attribute "smartNavigation" as in:
+<%@ Page smartNavigation="true/false" ... %>
+(which can also be set in web.config 'pages' section)
+** This is not supported in MONO and throws an exception.
+
+Steps to reproduce the problem:
+1. Include smartNavigation as a page attribute.
+
+Additional Information:
+Smart Navigation is a feature of .NET which causes the page to be drawn 
+in an IFRAME.  This makes postback round-trips look invisible as IE only 
+refreshes the part of the form that has changed, plus it maintains the 
+users scroll position after a postback (.NET only enables this if the 
+browser is IE).
+
+It is not at all important for MONO to implement this; however it must 
+not *break* when the attribute is present.  For now this attribute should 
+be allowed but ignored.  
+
+Other info: On the .NET framework, an extra IFRAME is emitted (if using 
+IE 5.5 or above), and a javascript file is reference from the page.
+
+------- Additional Comments From jackson@ximian.com  2003-12-05 16:13 -------
+Could you post a test case for this?
+
+------- Additional Comments From jackson@ximian.com  2003-12-08 17:20 -------
+OK, I have checked in a fix to ignore the smart navigation attribute.
+Will create a new bug report about implementing it.
+
+------- Additional Comments From davidandrewtaylor@hotmail.com  2004-06-01 05:10 -------
+Yes I can verify this has been fixed. Thanks.