devxlogo

Preserve The White Space Between Two Statements in ASP

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 %>."

See also  Why ChatGPT Is So Important Today
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