Ask a Question related to ASP.NET Security, Design and Development.
-
Tony #1
Application_AuthenticateRequest execute 4 times
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
-
MX7 can't execute MAX()
I just upgraded the ColdFusion server with ColdFusion MX7. After the upgrade, some of my existing working application have generated errors and... -
execute var from PHP in FLA
Hi guys! I've made a form from where a user can sign up. Now I want to tjeck in the MySQL db if the email already exists. How is this done? I... -
newbie seeks User.Identity and Application_AuthenticateRequest help
I'm trying to understand how security works in a ASP.NET c# project. The global.asax has this code: protected void... -
Application_AuthenticateRequest
I have code in the Global.asax that adds roles to a logged in user, which all works fine. But, i noticed that every request for a page thereafter... -
Form-based security and Application_AuthenticateRequest - help?!
Hi there, Getting into ASP.Net finally, looks good but I'm having a bit of trouble here. I'm protecting my web site via form-based security (I...



Reply With Quote

