[Mono-dev] Strange ASP.NET bug...

John Anderson sontek at gmail.com
Thu Jan 18 04:13:21 EST 2007


I can confirm that in ASP.NET 2.0 and ASP.NET 1.1 both render the following
HTML without any tags missing (including thead's):

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs"
Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <table>
        <thead>
            <tr>
                <td>
                    HEADER!!!</td>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td>
                    BODY!!</td>
            </tr>
        </tbody>
    </table>
</body>
</html>



On 1/16/07, Marek Habersack <grendello at gmail.com> wrote:
>
> On Tue, 16 Jan 2007 11:17:17 +0100, Hubert FONGARNAND
> <informatique.internet at fiducial.fr> scribbled:
>
> > Hello!
> >
> > I've reported last week a bug in ASP.NET (1.1 and 2.0) stack :
> > http://bugzilla.ximian.com/show_bug.cgi?id=80506
> >
> > when you write a simple aspx page... <thead> element (of a table) are
> > not rendered...
> > This bug is blocker for us...
> >
> > Could someone take a look on this...
> The attached diff fixes the issue, but there's a comment in mono's
> AspGenerator
> that MS.NET ignores the tags. Can you confirm that the tags are present on
> BOTH
> MS.NET 1.1 and 2.0?
>
> regards,
>
> marek
>
>
> _______________________________________________
> Mono-devel-list mailing list
> Mono-devel-list at lists.ximian.com
> http://lists.ximian.com/mailman/listinfo/mono-devel-list
>
>
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.ximian.com/pipermail/mono-devel-list/attachments/20070118/710ffef6/attachment.html 


More information about the Mono-devel-list mailing list