I have a textbox that has multiline property set.
I output my data here from another page.
When it loads Id like the textbox to treat the new data as a new line not a continuation text or append.
Each new data entered should start with
*
on my page load event, I have this code..
If dr("CommentsHist") is system.dbnull.value = false then
textBox1.text = dr("CaommentsHist")
endif
Currently since textbox1 has mulitiline, each new data entered just appends it to previous data.
I prefer new line created everytime.