Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Updating a DLL
Message
From
11/07/2010 13:14:48
 
 
General information
Forum:
ASP.NET
Category:
Other
Title:
Environment versions
Environment:
VB 9.0
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
MS SQL Server
Application:
Web
Miscellaneous
Thread ID:
01460478
Message ID:
01472198
Views:
32
>Can't you just add a plain one for testing ?

I did the test. I took the .aspx page and changed it from:
@ Page Language="VB" AutoEventWireup="false" Inherits="LevelExtreme.WebForm" 

@ import namespace="LevelExtreme" 

<script runat="server">
    Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Dim loShowHeader As ShowHeaderStore = New ShowHeaderStore(oProcess)
        loShowHeader.ShowHeader()
    End Sub
</script>

<Html runat="server" id="LXHtml">

<Head runat="server" id="LXHead"></Head>

<body runat="server" id="LXBody"> 
<asp:Literal ID="LXHeader" runat="server"></asp:Literal>
<form id="Form1" method="Post" runat="server" class=Form>

<asp:Literal ID="LXHtml2" runat="server"></asp:Literal>
</form>
<asp:Literal ID="LXFooter" runat="server"></asp:Literal>
</body>
</html>
to:
@ Page Language="VB" AutoEventWireup="false" 

@ import namespace="LevelExtreme" 

<script runat="server">
    Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    End Sub
</script>

<Html runat="server" id="LXHtml">

<Head runat="server" id="LXHead"></Head>

<body runat="server" id="LXBody"> 
<asp:Literal ID="LXHeader" runat="server"></asp:Literal>
<form id="Form1" method="Post" runat="server" class=Form>

<asp:Literal ID="LXHtml2" runat="server"></asp:Literal>
</form>
<asp:Literal ID="LXFooter" runat="server"></asp:Literal>
</body>
</html>
And, it froze as well. I was able to simulate that after three tries. That's pretty much the same pattern as the full environment. Basically, I can simulate it at about 25%. So, this shows that the problem is not related to my code at all nor to using both DLLs in the Bin directory.

One important thing to consider is that this happens on my server as well as on my PC. So, it is not something specific to a PC or server which could have been corrupted. I believe I also have that on client sites as well. This is frequent. So, it is related to something in the way I configure IIS, the .NET framework, or how my project is built. I just can't understand why I am the only one with this. I was not able to find on the net someone else having the same problem. I have seen people updating the DLL but the server was still using the old one. But, this is different here. Basically, the refresh of the new DLL goes in but it freezes.
Michel Fournier
Level Extreme Inc.
Designer, architect, owner of the Level Extreme Platform
Subscribe to the site at https://www.levelextreme.com/Home/DataEntry?Activator=55&NoStore=303
Subscription benefits https://www.levelextreme.com/Home/ViewPage?Activator=7&ID=52
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform