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

  • SEARCH
  • Home
  • 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 6100055
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T13:20:33+00:00 2026-05-23T13:20:33+00:00

I want to send a string I built using the StringBuilder to the HTML

  • 0

I want to send a string I built using the StringBuilder to the HTML page, which then I want to use in my JavaScript code.

Right now here’s what I am doing:

On the client side:

<div id="data">
    <asp:Literal ID="Literal1" runat="server"></asp:Literal>
</div>

In my JS block:

var data = $("#data").html();

In the code behind:

Literal1.Text = strXml.ToString();

The thing is, this data can be seen by going through the source of the data div, which I dont want to allow.

I want this string as soon as the page loads, so I guess making an AJAX call after the page has loaded to the server is out of the way.

Any smoother way ?

It’s a .NET rookie here.. 🙂

  • 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-23T13:20:34+00:00Added an answer on May 23, 2026 at 1:20 pm

    you can save your string in an HiddenField then read its value using javascript something like this

    <asp:HiddenField runat="server" ID="MyHidden">
    

    in code behind

    MyHidden.Value = strXml.ToString();
    

    javascript

    var data = $('#<%=MyHidden.ClientID%>').val();
    

    or you can define strXml as protected variable and use it inside .aspx like that

    public class _MyPage:Page
    {
        Protected String strXml;
        private void Page_Load(Object sender,EventArgs e)
        {
             StringBuilder mystrBuilder = new StringBuilder();
             //append some text to mystrBuilder
             strXml = mystrBuilder.ToString();
        }
    } 
    

    javascript code will like this

     var data = '<%=strXml%>';
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I use the __dopostback function in javascript page to send some information to the
I want to have a PHP script send a XML formatted string to another
I want to send an array constructed in javascript with the selected values of
I want to send an Email message after a page is returned to the
I built contact form in aspx 3.5 and I'm using jQuery to send it
I want to send a String (a long String, it's about 600 characters) to
I want to send a string data with jquery load function but its not
I want to send my C# string to a C++ DLL function. I have
I am using MD5 algorithm for sync with server where I want to send
I am trying to write code to send a simple mail from asp.net page.

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.