Seperating Textarea Values

is it possible to seperate the values in a textarea in ASP ?

sentence number 1 is by example: Car
sentence number 2 is by example: truck

when i post the asp page ( and form offcourse ) both car and truck is putted in one thing(string)

How can i seperate the two at the receiving asp page:

this is the idea ( syntax is bull**** )

frankie(1) = Request.Form("kindoftransportation[1]")
frankie(2) = Request.Form ("kindoftransportation[2]")

OR do i need javascript to this kind of stuff?

View Replies