[Mono-bugs] [Bug 78149][Maj] New - Dealock or Page Load not called at first call of a page

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Thu Apr 20 12:55:28 EDT 2006


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 informatique.internet at fiducial.fr.

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

--- shadow/78149	2006-04-20 12:55:28.000000000 -0400
+++ shadow/78149.tmp.21439	2006-04-20 12:55:28.000000000 -0400
@@ -0,0 +1,85 @@
+Bug#: 78149
+Product: Mono: Class Libraries
+Version: 1.1
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Major
+Component: Sys.Web
+AssignedTo: gonzalo at ximian.com                            
+ReportedBy: informatique.internet at fiducial.fr               
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Dealock or Page Load not called at first call of a page
+
+Description of Problem:
+I've a simple html page that have to Iframe which call the same aspx page
+using two different url parameters (to avoid firefox to do caching).
+The first time i load my html page, only the first frame display something,
+the second one is waiting indefinitely, it seems that a xsp thread is
+waiting something (like the end of the compilation of the first page)
+
+Steps to reproduce the problem:
+1. Create a index.html page like this:
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
+
+<HTML>
+
+	<HEAD>
+
+		<title>WebForm1</title>
+
+		<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
+
+		<meta name="CODE_LANGUAGE" Content="C#">
+
+		<meta name="vs_defaultClientScript" content="JavaScript">
+
+		<meta name="vs_targetSchema"
+content="http://schemas.microsoft.com/intellisense/ie5">
+
+	</HEAD>
+
+	<body MS_POSITIONING="GridLayout">
+
+		<form id="Form1" method="post" runat="server">
+
+
+		</form>
+				<iframe src="./WebForm2.aspx?id=32"></iframe>
+				<iframe src="./WebForm2.aspx?id=33"></iframe>
+
+	</body>
+
+</HTML>
+
+2. Create an WebForm2.aspx page like this:
+<%@ Page language="c#" Codebehind="WebForm2.aspx.cs"
+AutoEventWireup="false" Inherits="WebApplication1.WebForm2" %>
+
+<html>
+<body>
+	Hello
+</body>
+</html>
+
+3. Launch xsp and access index.html
+
+Actual Results:
+Only one of the two frame display "Hello", not the other 
+
+Expected Results:
+the two frame display hello
+
+How often does this happen? 
+Always at first compilation, if you press F5 key the two hello are shown...
+but the dead thread is still waiting in background (in apache status page,
+the apache PID is in Wait State)
+
+Additional Information:
+This problem is the same with <img src="..." /> tag, it's not an iframe
+problem!


More information about the mono-bugs mailing list