[Mono-bugs] [Bug 74850][Min] New - VB Compiler error with Font-Names attribute

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Fri, 6 May 2005 15:14:47 -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 sfossen@yahoo.com.

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

--- shadow/74850	2005-05-06 15:14:47.000000000 -0400
+++ shadow/74850.tmp.7464	2005-05-06 15:14:47.000000000 -0400
@@ -0,0 +1,34 @@
+Bug#: 74850
+Product: Mono: Compilers
+Version: 1.1
+OS: All
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Minor
+Component: Basic
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: sfossen@yahoo.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: VB Compiler error with Font-Names attribute
+
+Description of Problem:
+
+Font-names="Verdana" causes a compiler error. Font-name="Verdana" works
+fine. This is in a web application produced by Visual Studio.NET 2003.
+
+
+eg.
+Causes Error:
+<asp:Button id="btn1" Width="131px" BorderWidth="1px" BackColor="Gainsboro"
+BorderStyle="Solid" Text="Test" Font-Bold="True" Font-Size="X-Small"
+Font-Names="Trebuchet MS" runat="server"></asp:Button>
+
+Works:
+<asp:Button id="btn1" Width="131px" BorderWidth="1px" BackColor="Gainsboro"
+BorderStyle="Solid" Text="Test" Font-Bold="True" Font-Size="X-Small"
+Font-Name="Trebuchet MS" runat="server"></asp:Button>