Hi..
Why my code bellow allways returning 1/1/0001 12:00:00 AM value on Userinfo LastModifiedOnDate field
StringBuilder sb = new StringBuilder(); :
ArrayList ar = rc.GetUsersByRoleName(PortalId, "Registered Users");
foreach (UserInfo i in ar)
{
sb.Append("<p> Name: " + i.FirstName + " " + " LastModifiedOnDate : " + i.LastModifiedOnDate + "</p>");
}
lbuserinfo.Text = sb.ToString();
Result :
Name: Ade LastModifiedOnDate : 1/1/0001 12:00:00 AM
Name: Ade LastModifiedOnDate : 1/1/0001 12:00:00 AM
Name: Agung LastModifiedOnDate : 1/1/0001 12:00:00 AM
Please... I Need help To resolve this Error
Thank's in advance