加密应用程序服务连接字符串
有没有办法可以在后面的代码中设置 .NET ApplicationServices 连接字符串?而不是在我的 web.config 中使用纯文本?或者我可以将加密的值放在那里然后解密并再次传递它吗?
谢谢!
Is there a way where I can set the .NET ApplicationServices connection string in the code behind? Instead of having plain text in my web.config? Or can I just put the encrypted value there and then decrypt and pass it again?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以加密配置文件中的设置。 这里是 MSDN 上有关如何操作的文章。
You can encrypt settings in your config file. Here is the article on MSDN on how.
您可以创建/实现/使用一个ProtectedConfigurationProvider 以透明方式解密配置设置。
You can create/implement/use a ProtectedConfigurationProvider to transparently decrypt the configuration settings.