Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP .Net Security > Execution code run backward

Reply
Thread Tools

Execution code run backward

 
 
tony
Guest
Posts: n/a
 
      10-31-2003
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.
..


 
Reply With Quote
 
 
 
 
Jim Cheshire [MSFT]
Guest
Posts: n/a
 
      10-31-2003
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.
>.
>
>
>


 
Reply With Quote
 
 
 
 
Guest
Posts: n/a
 
      10-31-2003
Hi Jim,
Thank you for your immediate help.
I delete all PDB file for the project, but that's didn't
solve the problem, and the code still running back and
forth in: "Sub Application_AuthenticateRequest()"
Anything else I can try ???



>-----Original Message-----
>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.
>>.
>>
>>
>>

>
>.
>

 
Reply With Quote
 
tony
Guest
Posts: n/a
 
      10-31-2003
Hi Jim,
Thank you for your immediate help.
I delete all PDB file for the project, but that's didn't
solve the problem, and the code still running back and
forth in: "Sub Application_AuthenticateRequest()"
Anything else I can try ???



>-----Original Message-----
>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.


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Compile time container, run-time execution. shar3ub@googlemail.com C++ 9 02-05-2009 09:26 AM
private data stashed in local/global execution context of PyEval_EvalCode disappears down the execution stack sndive@gmail.com Python 9 11-14-2007 10:31 PM
Run-time Execution - Assert Failure August1 C++ 4 09-27-2004 11:08 PM
Backward North America still...backward! Richard DVD Video 17 08-19-2004 04:55 AM
How do you register cleanup code to be run after script execution? use dmgass at hotmail dot com Python 6 05-11-2004 01:48 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57