ASP pages in .Net project.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

If I mix classic asp pages into a .Net ptoject, and I need the
Authorization_request event in the gloabal.asax to fire (implementing LDAP
security), will the Authorization_request event fire for the ASP page?
 
No, because classic ASP pages aren't processed by the ASP.NET framework. You
*could* map them to the ASPNET worker process in IIS though. But I'm still
not sure if the global.asax events would fire for them. You could try very
easily though.
--Peter
 
Back
Top