I'm trying to create a web page from within a vb program. The program gets info from a database and then writes it to a web page. In order for the info to appear in the correct format on the web page I need to be able to substitute any carraige returns with <BR>'s. I've tried using
Replace(string,"\n","<BR>"), but I don't think that vb represents returns with \n. Any ideas?