@DbColumn Formula in Computed Text Web Page and Commas! ARGH!

I am throwing together a dynamic navigation pane on the left side of a web application I am writing. I am using a @DbColumn to produce the HTML and values that I have put in a column. Here’s the beef: I keep getting commas between my and tags. I’ve tried setting the multi-value seperator to none and space and it’s not helping. I’ve also tried an @Implode(@DbColumn) formula without success.

Anyone else encountered this problem?

Your thoughts are appreciated.

Subject: @DbColumn Formula in Computed Text Web Page and Commas! ARGH!

@Implode should do the trick, but use @Char(13) as a separator. If the HTML is in the view column, then:

@Implode(@DbColumn(yadayada);@Char(13))

and if you’re gluing the trs in afterward:

@Implode(“” + @DbColumn(yadayada) + “”; @Char(13))