Hi i'm currently working on this asp.net webform stock with this problem in my paragraph tag in my html part
<p>D1D2 submitted successfully.
" Holded lots:
Failed to hold:
lot try
mik
navi
"
</p>
In browser it renders in straight line as a paragraph supposed to be. Can i force it to be look like in sample bellow ?
D1D2 submitted successfully.
Holded lots:
Failed to hold:
lot try
mik
navi
I know break tag will solve it but it's a string so the break tag will only show it as text. Note: The text inside the paragraph is a server response.
I hope you understand what i mean. Thank you
`. Or you need to split it into separate paragraphs: separate `
` elements.
– Michał Turczyn Jan 29 '20 at 06:09because the text inside is from the server response
– Berzerk25 Jan 29 '20 at 06:10`and it should work fine.
– Nathan Jan 29 '20 at 06:11