Global.asax 2.0 Why did they do that?

  • Thread starter Thread starter Learnicus
  • Start date Start date
L

Learnicus

Why has Global.asax become a script file in 2.0?
I cant find any documentation on the rational for this change?

Lenny
 
Because, since global.asax has no user interface, anything you can compile
in code-behind, which *has* a user interface, can be compiled in global.asax
without needing to be compiled from global.asax.cs or global.asax.vb
only to be recompiled again as global.asax.

The process is one step simpler now.




Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top