Could we save data in encrypted form in sqlserver2000 though C# if it is Possible then How?
Manoj Pal
Yes v can save encrypted data into SQL Server. System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(strPassword, "sha1"); The above line of code will encrypt the text which is entered in the textbox. Aport from this v can encrypt the data using System.Cryptography namespace. Happy Coding Jey