Hi all
I am currently trying to populate a textbox(textbox 1) with a few lines of data which sounds simple!
The data is being set from a back page so .cs
it displays both items but on the same line
I have tried other ways as well but none seem to work.
From what i have read it is because it will be displaying in html but i am unsure how to put the break in any input would be highly appreciated
Truez
I am currently trying to populate a textbox(textbox 1) with a few lines of data which sounds simple!
The data is being set from a back page so .cs
Code:
Dim myitem As New TextBox.classData.PorductOrderInfo
myitem.DateOrdered = "20/02/2009"
myitem.Title = "myTest"
myitem.Body = "Body Oh YEAHHHHHHHHHHH"
TextBox1.Text = myitem.Title.ToString + Environment.NewLine + myitem.DateOrdered.ToString
I have tried other ways as well but none seem to work.
From what i have read it is because it will be displaying in html but i am unsure how to put the break in any input would be highly appreciated
Truez
Comment