web.config and global.asax

  • Thread starter Thread starter Brian Henry
  • Start date Start date
B

Brian Henry

What all can i do with these two files? i know a little about them but never
really used them that much, is there any good resources for asp.net out
there on them? thanks
 
Brian,

Search for web.config at the MSDN web site and you'll have more info than
you know what to do with! Same for global.asax, if I recall.

-Justice
 
webconfig is a file that allows you to customize settings for the server
machine. you may also use it to customize settings for the application
running on the server machine. it is readonly for the most part. it comes in
very handy when you want to change your application behavior without doing
it thru code. it can be used to override machine specific settings, security
etc.

global asax file is the same as a form aspx file except that it's contents
get compiled into a dll where the variables service the entire application,
unlike form variables which service the particular form page - hence the
name global.

Touching any of these two files will cause the application to restart.

regards
 
Back
Top