Execution code run backward

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default Execution code run backward

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


    tony Guest

  2. Similar Questions and Discussions

    1. Back Button and code execution
      Hi, I have a web form accounting app. In certain instances it causes trouble if the user clicks the Back button. I've read several posts that...
    2. Backward compatibility between MX7 and CF 4.5.1 SP1
      Hello everybody, First of all I'm not ColdFusion expert, CF is just one part used on our GSM project. In near future we will change our old server...
    3. Pausing Code Execution
      I want to create an Alert/Message box in Flash MX. I want to be able to do something like this: var retval = message("Save File Before...
    4. PERL code execution rule?
      I was under the impression that "subroutines" are only executed IF they're called. But, it looks like subroutines will execute on there own if they...
    5. Backward recovery
      Hi, How can I recovery backward using the online redologs or archive redologs. So I have not any backups and I want to produce the yesterday...
  3. #2

    Default RE: Execution code run backward

    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
    [email]jamesche@online.microsoft.com[/email]

    This post is provided as-is with no warranties and confers no rights.

    --------------------
    >Content-Class: urn:content-classes:message
    >From: "tony" <tony.hag@valueoptions.com>
    >Sender: "tony" <tony.hag@valueoptions.com>
    >Subject: Execution code run backward
    >Date: Fri, 31 Oct 2003 09:22:46 -0800
    >Lines: 25
    >Message-ID: <0c1b01c39fd3$99dfe950$a601280a@phx.gbl>
    >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.
    >.
    >
    >
    >
    Jim Cheshire [MSFT] Guest

  4. #3

    Default RE: Execution code run backward

    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
    >jamesche@online.microsoft.com
    >
    >This post is provided as-is with no warranties and
    confers no rights.
    >
    >--------------------
    >>Content-Class: urn:content-classes:message
    >>From: "tony" <tony.hag@valueoptions.com>
    >>Sender: "tony" <tony.hag@valueoptions.com>
    >>Subject: Execution code run backward
    >>Date: Fri, 31 Oct 2003 09:22:46 -0800
    >>Lines: 25
    >>Message-ID: <0c1b01c39fd3$99dfe950$a601280a@phx.gbl>
    >>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.
    >>.
    >>
    >>
    >>
    >
    >.
    >
    Guest

  5. #4

    Default RE: Execution code run backward

    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.
    tony Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139