Hi everyone,
Some sources say that the "machinekey" attribute is found in 'web.config' and others say it's in 'machine.config'. I can only find it in machine.config. However, there are no values attached to it. I assume this means that these values are used by default:
<machineKey validationKey="AutoGenerate,IsolateApps"
decryptionKey="AutoGenerate,IsolateApps"
validation="SHA1" decryption="Auto" />
This means that the validationkey is generated at runtime. Is it possible for me to access this key from my site? I would like to use it in conjunction with the code found Go to the complete details ...