Keys are useful when you do not want to hardcode values in the software.
in the web.config:
Code:
<appSettings>
<add key="keyname" value="value of the key" />
</appSettings>
vb code:
Code:
System.Configuration.ConfigurationManager.AppSettings("keyname")