Tony,
Delete all of your PDB files and then rebuild and try again. The only
thing I can think of is that your symbols are bad.
Jim Cheshire [MSFT]
Developer Support
ASP.NET
This post is provided as-is with no warranties and confers no rights.
--------------------
>Content-Class: urn:content-classes:message
>From: "tony" <>
>Sender: "tony" <>
>Subject: Execution code run backward
>Date: Fri, 31 Oct 2003 09:22:46 -0800
>Lines: 25
>Message-ID: <0c1b01c39fd3$99dfe950$>
>MIME-Version: 1.0
>Content-Type: text/plain;
> charset="iso-8859-1"
>Content-Transfer-Encoding: 7bit
>X-Newsreader: Microsoft CDO for Windows 2000
>Thread-Index: AcOf05nfZ4DXD34kRxaztMkPysQSrQ==
>X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
>Newsgroups: microsoft.public.dotnet.framework.aspnet.security
>Path: cpmsftngxa06.phx.gbl
>Xref: cpmsftngxa06.phx.gbl
microsoft.public.dotnet.framework.aspnet.security: 7351
>NNTP-Posting-Host: TK2MSFTNGXA14 10.40.1.166
>X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
>
>Hi,
>I've never seen similar problem before.
>Application_AuthenticateRequest in Global.asax.vb file
>execute 4 time before it exit to the default.vb file.
>Plus, in every run, the code execution jump back to the
>previous line that already been executed (I'll explain):
>
>example :
>line 1 : Sub Application_AuthenticateRequest( ....)
>line 2: If (a=b) Then
>line 3: a=c
>line 4: End IF
>line 5: ...
>line 20: End Sub
>
>the code execution run in the following direction:
> line1 then line2 , then line1 again, then line2 again.
> line 3 then line4, then line 3 again, then line4
>again, .......
>and it keep running this way until "End Sub".
>
>any help would be really appreciated.
>.
>
>
>