Welcome to MLink Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.2k views
in Technique[技术] by (71.8m points)

.net core - Any better way to encrypt ID before binding it to datatable and open for editing/delete that they cannot see ID in whole view source?

BaseModel.cs

public class BaseModel
{
   public string EID { get; set; } // encrypted id
}

HomeController.cs

public IActionResult Index()
{
   var users = services.Users.Get();
   users.ForEach(x => x.EID = Encrypt(x.ID));

   return View(users);
}

public IActionResult Edit(string eid)
{
   if (eid == null || int.TryParse("eid", out _))
      throw;

   var id = Decrypt(eid);
   ...

   return View();
}

this?

or any better way you suggest?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to MLink Developer Q&A Community for programmer and developer-Open, Learning and Share
...