[Mono-bugs] [Bug 75618][Nor] New - FormView renders faulty HTML
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Sun Jul 24 08:18:57 EDT 2005
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 mats at tux.se.
http://bugzilla.ximian.com/show_bug.cgi?id=75618
--- shadow/75618 2005-07-24 08:18:57.000000000 -0400
+++ shadow/75618.tmp.15586 2005-07-24 08:18:57.000000000 -0400
@@ -0,0 +1,64 @@
+Bug#: 75618
+Product: Mono: Class Libraries
+Version: 1.1
+OS: SUSE 9.2
+OS Details: SuSE 9.3 with mono 1.1.8
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: Sys.Web
+AssignedTo: mono-bugs at ximian.com
+ReportedBy: mats at tux.se
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: FormView renders faulty HTML
+
+The HTML outcome from the FormView Web-Forms component is faulty.
+Following ASPX code renders differently between the design server in
+Visual Studio 2005 and the Mono server:
+
+<asp:FormView ID="formView_" runat="server" CellPadding="4"
+ForeColor="#FFFFFF" Width="100%">
+ <FooterStyle BackColor="#5D7B9D" Font-Bold="True"
+ForeColor="White" />
+ <RowStyle ForeColor="Black" />
+ <PagerStyle BackColor="#284775" ForeColor="White"
+HorizontalAlign="Center" />
+ <HeaderStyle BackColor="#5D7B9D" Font-Bold="True"
+ForeColor="White" />
+ <EditRowStyle BackColor="#999999" />
+ <ItemTemplate>
+ </ItemTemplate>
+</asp:FormView>
+
+
+The outcome from the development server is:
+
+<table cellspacing="0" cellpadding="4" border="0"
+id="ctl00_contentPlaceHolder__formView_"
+style="color:White;width:100%;border-collapse:collapse;">
+ <tr style="color:Black;">
+ <td colspan="2">
+ </td>
+ </tr>
+</table>
+
+
+and the outcome from Mono server is:
+
+<table border="0" cellspacing="0" cellspacing="0" cellpadding="4"
+border="0" style="border-collapse:collapse;border-collapse:collapse;"><tr
+style="color:Black;"><td>
+ </td>
+ </tr>
+</table>
+
+
+The visual effect is that the table rendered from the formview component
+is not using the fully 100% of the width wished for in the ASPX code.
+
+Regards,
+Mats Nilsson
More information about the mono-bugs
mailing list