1
Reply

Could we save data in encrypted form in sqlserver2000 though C# if it is Possible then How?

Manoj Pal

Manoj Pal

Aug 01, 2006
4.3k
0

    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

    Jeyaram Thangaponnan
    August 23, 2006
    0