Hello,
I have been able to add several fields to the customers.aspx.cs. But, when i use the same technique to add to the cst_account.cs it does not work.
for example, adding the following results in error. I am figuring the MemberSince is not in the Target.Customer. But i cant figure out where to add it. The field is in the db.
writer.Write(" <tr>");
writer.Write(" <td width=\"25%\" align=\"right\" valign=\"middle\">Member Since:</td>");
writer.Write(" <td width=\"75%\" align=\"left\" valign=\"middle\">");
writer.Write(Localization.ToNativeDateTimeString(T argetCustomer.MemberSince));
writer.Write(" </td>");
writer.Write(" </tr>");