So I have a connection string labeled as:
<connectionStrings>
<add name="TBL_ClassServices"
connectionString="Server=(localdb)\MSSQLLocalDB; database=Assignment1; User Id=test; Password=test"
providerName="System.data.sqlclient" />
</connectionStrings>
I just want to encrypt the User Id and the Password without encrypting the whole connection string itself. Is it possible, and if so, how would you encrypt it, and then decrypt it using aspx.cs (C# back-end) code.
Thanks