Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5943753
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T16:26:26+00:00 2026-05-22T16:26:26+00:00

This multiline string when created by a browser has the expected length: <script type=text/javascript>

  • 0

This multiline string when created by a browser has the expected length:

<script type="text/javascript">
var s = "\
    a";
document.write(s.length);
</script>

Outputs 5

But when executed as ASP server side scritp it outputs 1:

<%@ Language=JavaScript %>
<%
var s = "\
    a";
Response.Write(s.length);
%>

What is happening is that the ASP version of Javascript is eating the leading white spaces when used in multiline strings.

How to make the ASP version behave the same as the browser version?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T16:26:27+00:00Added an answer on May 22, 2026 at 4:26 pm

    If you include a \ at the start of your line, asp recognizes the whitespace.

    <%@ Language=JavaScript %>
    <%
    var s = "\
    \    a";
    Response.Write(s.length);
    %>
    

    I wasn’t familiar with using the \ character to create multiline strings. Neat stuff, but I couldn’t find documentation for that. I guess it’s just escaping the line break? Do you have a link to a reference?

    Edit Additionally, this code:

    <pre>
    <%
    var s = "\
        unescaped";
    Response.Write(s);
    Response.Write("\n");
    s = "\
    \    escaped";
    Response.Write(s);
    %>
    </pre>
    

    Gives this output:

    unescaped
        escaped
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got a multiline string like this. Ity has line feeds. [Site Url=http://medportal.domain.edu Owner=DOMAIN\user1
I have a TextView that will hold a styled, multiline string. This text is
In Python you can have a multiline string like this using a docstring foo
I need to extract the text (characters and numbers) from a multiline string. Everything
In the string some text <p id='item_1' class='item'>multiline content\r\n\r\n for <br/>remove</p><br clear='all' id='end_of_item_1'/><p id='item_2'
I recently used the <<- operator to output a multi-line string, like this: <<-form
I have a simple html multiline tooltip implementation: this.tooltip = function(tag) { xOffset =
According to this article , it's possible to get multiline XML comments -- instead
I sent a multi-line data with length greater than 20. I'm sure of this
I'm using Google App Engine and I need to put a multiline string in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.