J
Julia B
Hi all
I've got a bit of code that inserts some text into a text field on a webform
under certain circumstances. The text needs some line breaks in it. This is
what I've done.
Me.OptionalNotesTB.Text = _
"- Unless otherwise offered in this quote no System Data
Requirement Lists " + _
"or other technical documentation is included. " + _
"Should these be required then we would be pleased to quote
for them separately. <br>" + _
"- Stock subject to prior sales. <br>" + _
"- Delivery charges will apply where appropriate. <br>" + _
"- The company has a minimum order charge of $250.00."
Unfortunately this doesn't seem to work. The text displays as follows:
"- Unless otherwise offered in this quote no System Data Requirement Lists
or other technical documentation is included. Should these be required then
we would be pleased to quote for them separately. <br>- Stock subject to
prior sales. <br- Delivery charges will apply where appropriate. <br- The
company has a minimum order charge of $250.00."
How do I convert the <br> into a line break?
Thanks in advance.
Julia
I've got a bit of code that inserts some text into a text field on a webform
under certain circumstances. The text needs some line breaks in it. This is
what I've done.
Me.OptionalNotesTB.Text = _
"- Unless otherwise offered in this quote no System Data
Requirement Lists " + _
"or other technical documentation is included. " + _
"Should these be required then we would be pleased to quote
for them separately. <br>" + _
"- Stock subject to prior sales. <br>" + _
"- Delivery charges will apply where appropriate. <br>" + _
"- The company has a minimum order charge of $250.00."
Unfortunately this doesn't seem to work. The text displays as follows:
"- Unless otherwise offered in this quote no System Data Requirement Lists
or other technical documentation is included. Should these be required then
we would be pleased to quote for them separately. <br>- Stock subject to
prior sales. <br- Delivery charges will apply where appropriate. <br- The
company has a minimum order charge of $250.00."
How do I convert the <br> into a line break?
Thanks in advance.
Julia