This topic is locked

In one datafield multiple line entry

1/27/2005 1:31:00 PM
ASPRunnerPro General questions
swat author

In one datafield multiple line entry is possible? I need to have one datafield with multiple data, and I need to display all in one datafield...

User entry :

1:00-2:00,3:00-4:00,5:00-6:00

The display the data :

  • 1:00-2:00
  • 3:00-4:00
  • 5:00-6:00

Sergey Kornilov admin 1/31/2005

Swat,
you can use something like this:

Response.Write Replace(rs("FieldName"), "," , "
")

swat author 2/1/2005

admin-
this works great-

<img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=3263&image=1&table=forumreplies' class='bbc_emoticon' alt=':)' />

Response.Write Replace(rsData.Fields("Field Name"), "," , "<br>")