jedirobb
08-06-2006, 10:26 PM
ASP Pages
Access 2003 Database
I have a table (tbl_Investors) with contact information in it; one of the fields is an email address (fldPrimEmail).
I am trying, with minimal success, to have a single text field on my form be populated with the email address for each of the records in the table with a "; " between each for email purposes.
When the form populates now it creates multiple text boxes with a separate email address and "; " in each.
I know I am looping the text field and that is why it is displaying as such but I cannot figure out how to just loop the database field and send that value to the single text box.
Here is the value I am using for my text box that goes repeat crazy on me:
<%= rstDBEdit.Fields("fldPrimEmail").Value %>;
Thanks much for any help you can offer.
Access 2003 Database
I have a table (tbl_Investors) with contact information in it; one of the fields is an email address (fldPrimEmail).
I am trying, with minimal success, to have a single text field on my form be populated with the email address for each of the records in the table with a "; " between each for email purposes.
When the form populates now it creates multiple text boxes with a separate email address and "; " in each.
I know I am looping the text field and that is why it is displaying as such but I cannot figure out how to just loop the database field and send that value to the single text box.
Here is the value I am using for my text box that goes repeat crazy on me:
<%= rstDBEdit.Fields("fldPrimEmail").Value %>;
Thanks much for any help you can offer.