devxlogo

Displaying Embedded Newline Characters from ASP.NET Resource Files

Displaying Embedded Newline Characters from ASP.NET Resource Files

When an ASP.NET resource file includes newline characters (
) as part of a string value, the embedded newlines don’t show up correctly on the client side. The solution is to use the special defined character Environment.NewLine in your server-side code. The example below is in VB, but the same approach works in C#:

Dim resReader As ResourceReader = NothingDim dicEnumerator As IDictionaryEnumerator = NothingDim keyValuePair As StringBuilderresReader = New ResourceReader(path)dicEnumerator = resReader.GetEnumerator()While dicEnumerator.MoveNext()' Environment.NewLine is the new line char most appropriate for the 'environmentkeyValuePair.Append(dicEnumerator.Key + "=" + _   dicEnumerator.Value.ToString().Replace("
", Environment.NewLine))End While

The preceding code replaces any
characters embedded in the resource string with the Environment.NewLine character.

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist