How can we Send the ID parameter in encrypted form?? in
below code:-
public GetHelpVideo(int ID)
{
try
{
HelpContent obj = db.HelpContents.Find(ID);
string FileName = string.Empty;
FileName = obj.FileName;
if (!string.IsNullOrEmpty(FileName))
{
}
Naimish MakwanaPosted Apr 20, 2023, 12:20 PM
You can use AES algorithm for this. Example:
Thanks