|
|
|
|
|
| | |
|
Active Server Pages help tutorial how to ASP Help ASP Tutorials ASP Programming ASP Code - ASP Free CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
Subject: |
Re: Selecting an item from a comma delimited list |
From: |
Bullgod |
Date: |
10/17/1999 8:20:32 PM |
IP: |
208.143.61.63 |
Use the split function to put the values into an array:
<%
Test = "1, 2, 3" From your database
TestArray = Split(Test, ",")
For Index = 0 To UBound(TestArray)
Response.Write(Trim(TestArray(Index)) & "<br>")
Next
%>
|
Previous Message
|
|
|
|
|
|
|
|
|
|
|
|