jleiker
06-09-2003, 10:21 AM
Hi!
The code below displays my record from the database like this:
txtcode-txtname (JLF-mutual of city)
txtcode-txtname
(and so on for as many as I choose to display...size of box)
I want to display it like this...showing only four records at a time:
txtcode
txtname
txt code
txt name
I don't know how to make it display this way???
Here's some of the code:
Response.Write ">" & rs("txtcode") & " - " & rs("txtname") &"</Option>"
rs.MoveNext
Loop
rs.Close
The code below displays my record from the database like this:
txtcode-txtname (JLF-mutual of city)
txtcode-txtname
(and so on for as many as I choose to display...size of box)
I want to display it like this...showing only four records at a time:
txtcode
txtname
txt code
txt name
I don't know how to make it display this way???
Here's some of the code:
Response.Write ">" & rs("txtcode") & " - " & rs("txtname") &"</Option>"
rs.MoveNext
Loop
rs.Close