Wednesday, 23 April 2014

what is difference between web.config and Global.aspx

web.config :
  • To Specify the Application Settings.
  • To Specify the Session Mechanism available to use for that application.
  • To Specify the connection strings.
  • To Specify HTTP Handlers.
  • To Specify different providers.
Global.aspx :
  • It is used to specify session and application event handlers.
Major events of Global.aspx is :
  • Application_init;
  • Application_disposed.
  • Application-error
  • Application_Start and soon...

No comments:

Post a Comment