[Mono-bugs] [Bug 73109][Nor] New - ASP.NET variables in html tags lead to parser errors

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Mon, 28 Feb 2005 05:45:27 -0500 (EST)


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 jwezel@compumaster.de.

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

--- shadow/73109	2005-02-28 05:45:27.000000000 -0500
+++ shadow/73109.tmp.12330	2005-02-28 05:45:27.000000000 -0500
@@ -0,0 +1,54 @@
+Bug#: 73109
+Product: Mono: Class Libraries
+Version: unspecified
+OS: Red Hat 9.0
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: Sys.Web
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: jwezel@compumaster.de               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: ASP.NET variables in html tags lead to parser errors
+
+Description of Problem:
+
+Parser Error
+Description: Error parsing a resource required to service this request. 
+Review your source file and modify it to fix this error. 
+Error message: expecting '>'. Got '<' 
+
+Given HTML file:
+<html>
+<body bgcolor="#ffffff" leftmargin="0" topmargin="10" marginwidth="0" 
+marginheight="10" <%= "foo=""blah""" %>>
+</body>
+</html>
+
+Steps to reproduce the problem:
+1. run ASPX file with XSP (and VB language)
+2. 
+3. 
+
+Actual Results:
+Parser error for "<%=" as well as "<%#" begin tags when used inside of 
+other HTML tags
+
+Expected Results:
+Rendered output without parser errors
+<html>
+<body bgcolor="#ffffff" leftmargin="0" topmargin="10" marginwidth="0" 
+marginheight="10" foo="blah">
+</body>
+</html>
+
+
+How often does this happen? 
+always
+
+Additional Information: