I've got a text box control on a page and I want people to add URLs, one on each line and then split those URLs into an array.
So, I'm trying to split them on the newline character. I've tried:
.split(Environment.Newline)
.split('vbcrlf')
.split(vbcrlf)
.split((char)Environment.Newline)
but all to no avail. What am I doing wrong?