web.config & global.asax?

  • Thread starter Thread starter Arpan
  • Start date Start date
A

Arpan

Can someone please tell me what are the differences between the
web.config file & the global.asax file?

Thanks,

Arpan
 
web.config is an xml configuration file that the application loads when it
starts.
global.asax is a class file, it holds the Global application class and its
intrinsic methods (e.g., Application_Start ,etc) plus whatever other fields
and methods you want to add there.
Peter
 

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