Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Linking CSV in asp

Status
Not open for further replies.

emissions

Technical User
Mar 17, 2002
68
GB
Anyone know of a way to create hyperlinks using comma seperated values from a Access field.

The hyperlink needs to create a new record to be submitted to the database....

Thanks in Advanced
 
Not really sure what you are doing, but if you pass the csv value to a variable and split it on the comma's you could rebuild each into a hyperlink using ASP.

Cheech

[Peace][Pipe]
The secret of life is honesty and fair dealing. If you can fake that, you've got it made.
Groucho Marx (1895-1977)
 
Okay, sorry I never explained this properly...

The orignal (Article) information is input from a form into the database, from drop down boxes that populate the database field (mailbox) with comma's seperating them.

I'm looking to create an account for each of the mailboxes that have populated the field, in relation to the Article. So the Article could have a single or multiple mailboxes entered into that field.

I hope this helps....
 
OK
what you need to do is create a recordset to extract the mailbox field only then split this into an array using split(inString) then put an insert behaviour into a repeat region using the array.

Cheech

[Peace][Pipe]
The secret of life is honesty and fair dealing. If you can fake that, you've got it made.
Groucho Marx (1895-1977)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top