web.config question

  • Thread starter Thread starter Krishnan
  • Start date Start date
K

Krishnan

Hi,
Could anybody please let me know if I can have custom tags in Web.Config
file just as we do for app.config? If yes, how? If no, how do we generally
configure dynamic properties for an asp.net application?

TIA
Krishnan
Anything good in life is either illegal, immoral or fattening
 
Hi,

you can add Parameters under <appSettings>
(Not real custom tags, but you can use it for your
properties.)

like:
<add key="param"value="value"/>

Seb
 
Back
Top