Question { 33236 }
diff between forms authentication and windows
authentication?
Answer
web.config file
The web.config file is an XML based configuration file which
exists for every web application. The web.config file
typical resides in the application root directory although
it is possible to have multiple web.config files. If there
is another web.config file placed in a directory below the
application root, it will use those setting instead. The
web.config file is where you will tell a web application to
use either of the three types of autentication types.
Here we show you a basic example of what a web.config file
looks like when it has be set to use form authentication. I
will go in further detail and explain the tags.
timeout="30">
The first tag in the web.config file is the
tag. It is the base tag for the web.config file and will
contain all your configuration settings in here. The first
tag specifies the settings that will apply to
all the file in the same directory and the files below this
directory.