> It seems I don't have the correct codes to indicate the end of the > records. I've tried "chr(10)" and "chr(13)" separately, and in unison, > as in the above example. > > Does anyone out there in CFExpertLand know what the correct line ending > code would be ?
You may want to use a hex editor to determine the ASCII value of the line character. Also, another option would to be to loop through all the characters and do a ASC(Mid(string, position, 1)) to find unusual characters. Or if you can find the length of the first row, simply find the ASC of the character right after the end. Ben Johnson Hostworks, Inc. ______________________________________________________________________ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

