在 DNN 的站点设置中,我想将用户的信用卡存储在他们的个人资料中。有没有办法加密这些数据?这是我用来拉取用户自定义字段的代码:
UserInfo theUser = new UserInfo
ProfilePropertyDefinition ppd = theUser.Profile.GetProperty(propName);
if (ppd != null)
{
string v = ppd.PropertyValue;
if (String.IsNullOrEmpty(v))
{
return string.Empty;
}
return v;
}