|
|
Browse by Tags
All Tags » sql connection
-
::raises hand:: I do this on my site -- you can also encrypt sql connections! (REALLY GOOD IDEA)
create a button and make this its event
protected void Button1_Click(object sender, EventArgs e)
{
ProtectSection("connectionStrings", "DataProtectionConfigurationProvider");
}
to unencrypt...
protected void ...
|
|
|