I need to know what is the common way to store a SQL server connection string for a WinForms application in VB.NET.
I have searched the net and I found answers to each of the following questions:
- How do I read app.config values
- How to do it in ASP.NET Reference: this SO question.
- How do I store a connection string (unencrypted thus unsafe)
I would like a full answer on how to store a connection string in VB.NET in app.config (or settings.settings if it’s better) securely.
Is app.config the right place? Can I encrypt these values?
Simply , the .net framework allows you to do that , see
http://msdn.microsoft.com/en-us/library/89211k9b(v=vs.80).aspx
Relevant information:
This goes into the machine.config file:
And this is the application code:
UPDATE 1
Thanks @wpcoder, for this link