Secure Form Fields

Nishant Khandelwal asked on November 16, 2016 10:58

Hello,

I am creating Biz form where some fields needs to be saved in encrypted format.

Please let me know how I can achieve??

Recent Answers


Anton Grekhovodov answered on November 16, 2016 11:08

Hi Nashant,

You can:
1) use native data encryption in SQL Server
https://msdn.microsoft.com/en-us/library/bb934049.aspx
https://www.youtube.com/watch?v=kYeC_3l0f24
https://www.youtube.com/watch?v=oHmz5q0YtD8
2) create Event Handler for your form Handling form events

1 votesVote for this answer Mark as a Correct answer

Bill Tran answered on November 16, 2016 18:45 (last edited on November 16, 2016 18:46)

You can use sql encryption, or you can use an Symmetric Encryption algorithm whereby you can encrypt and decrypt the data in the code behind.

Check out how to do it with AES

1 votesVote for this answer Mark as a Correct answer

   Please, sign in to be able to submit a new answer.