devxlogo

Preserve The White Space Between Two Statements in ASP

ASP strips out white space between the closing delimiter of a statement and the opening delimiter of the following statement. If there is a need to preserve the white space between two statements, such as when displaying the values of variables in a sentence, you must use an HTML nonbreaking space character ( )For example:

 <%'Define two variables with string values.FirstName = "XX"LastName = "YY"%>

Now to process the page so that "XX YY" and "XXYY" is displayed, you need to add HTML nonbreaking space character between the variables.

 

My name is "<%= FirstName %> 
<%= LastName %>."

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  How Seasoned Architects Evaluate New Tech

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.