How would I put an end of line character in the second line below?
Textbox1.Text = "Hello "
Textbox1.Text =
Textbox1.Text = "World"
Thanks,
Chris Lusardi...
Search Result
Collapse
2 results in 0.0039 seconds.
Keywords
Members
Tags
-
How Do I Put An End Of Line Character In A TextBox
-
End of Line Marker
I'm writing some code that is formating an output file being generated
within a web app. I want to allow the site administrator to configure the
characters that will mark the end of each line/record in the file.
Therefore, I added a key to my web.config appSettings section similar to the
following:
<add key="EORMarker" value="\r\n" />
This way, the setting can be changed...