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

2007-01-16 Thread Hubert FONGARNAND
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...  element (of a table) are
not rendered...
This bug is blocker for us...

Could someone take a look on this...

Thanks!


___
Ce message et les éventuels documents joints peuvent contenir des informations 
confidentielles.
Au cas où il ne vous serait pas destiné, nous vous remercions de bien vouloir 
le supprimer et en aviser immédiatement l'expéditeur. Toute utilisation de ce 
message non conforme à sa destination, toute diffusion ou publication, totale 
ou partielle et quel qu'en soit le moyen est formellement interdite.
Les communications sur internet n'étant pas sécurisées, l'intégrité de ce 
message n'est pas assurée et la société émettrice ne peut être tenue pour 
responsable de son contenu.
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


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

2007-01-16 Thread Marek Habersack
On Tue, 16 Jan 2007 11:17:17 +0100, Hubert FONGARNAND
<[EMAIL PROTECTED]> 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...  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
Index: AspGenerator.cs
===
--- AspGenerator.cs	(revision 71107)
+++ AspGenerator.cs	(working copy)
@@ -333,13 +333,6 @@
 			if (tparser != null)
 tparser.Location = location;
 
-			// MS ignores tbody/thead
-			if ((attributes == null || !attributes.IsRunAtServer ())) {
-if (String.Compare (tagid, "tbody", true, CultureInfo.InvariantCulture) == 0 ||
-String.Compare (tagid, "thead", true, CultureInfo.InvariantCulture) == 0)
-return;
-			}
-
 			if (text.Length != 0)
 FlushText ();
 


signature.asc
Description: PGP signature
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


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

2007-01-18 Thread John Anderson

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" %>

http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
http://www.w3.org/1999/xhtml";>

   Untitled Page


   
   
   
   
   HEADER!!!
   
   
   
   
   
   BODY!!
   
   
   





On 1/16/07, Marek Habersack <[EMAIL PROTECTED]> wrote:


On Tue, 16 Jan 2007 11:17:17 +0100, Hubert FONGARNAND
<[EMAIL PROTECTED]> 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...  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@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list




___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


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

2007-01-18 Thread Marek Habersack
On Thu, 18 Jan 2007 02:13:21 -0700, "John Anderson" <[EMAIL PROTECTED]>
scribbled:

> 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):
The bug was fixed in svn trunk, as of r71193

regards,

marek


signature.asc
Description: PGP signature
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list