Override single attribute in machine.config

Posted by Steffen on Stack Overflow See other posts from Stack Overflow or by Steffen
Published on 2010-05-05T10:46:47Z Indexed on 2010/05/05 10:48 UTC
Read the original article Hit count: 260

Filed under:
|

I was wondering if it's possible to override just an attribute of a tag in machine.config ?

More exactly I want to set the domain attribute of in machine.config, as it differs from my production server and my development server.

I tried just adding the tag to machine.config, but alas it doesn't seem to have an effect.

in machine.config I added:

<authentication>
  <forms domain=".foo.com" />
</authenticaion>

© Stack Overflow or respective owner

Related posts about c#

Related posts about ASP.NET