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 4271620
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T07:27:59+00:00 2026-05-21T07:27:59+00:00

I have a web page in which I am giving USER the options of

  • 0

I have a web page in which I am giving USER the options of writing notes. Now when ever the web page checks that a USER is:abc then it pulls up the note from the MEMO Table.

Here is my code in Page_Load():

using (EntityMemoDataContext em = new EntityMemoDataContext())
            {
                int getEntity = Int16.Parse(Session["EntityIdSelected"].ToString());
                var showMemo = from r in em.EntityMemoVs_1s
                               where r.EntityID == getEntity
                               select r.Memo;

                tbShowNote.Text = String.Join(@"<br />", showMemo);
            }

tbShowNote is showing me value like this:

test<br />test1<br />test1<br />test4<br />test4

And I want it like this:

Test
Test1
Test2 …

tbShowNote is a TextBox!

  • 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-21T07:28:00+00:00Added an answer on May 21, 2026 at 7:28 am

    You only asked for the first memo, so that’s what you got back. If you want it enumerated with each one on it’s own line in html, you could do this:

        using (EntityMemoDataContext em = new EntityMemoDataContext())
        {
            int getEntity1 = Int16.Parse(Session["EntityIdSelected"].ToString());
            var showMemo = from r in em.EntityMemoVs_1s
                           where r.EntityID == getEntity1
                           select new
                           {
                               r.Memo
                           };
            tbShowNote.Text = String.Join(@"<br />", showMemo);
        }
    

    The key takeaway is if r.Memo is of type string, then the LINQ query you executed gave you back a IQueryable<string>. It’s on you to decide if you want to flatten that list later.

    Edit: Equiso made a good observation in that you’re actually returning an IQueryable of an anonymous type, not IQueryable<string> due to the new { ... } syntax. I’d say combine his answer with mine and run with it:

    var showMemo = from r in em.EntityMemoVs_1s
                   where r.EntityID == getEntity1
                   select r.Memo;
    
    tbShowNote.Text = String.Join(@"<br />", showMemo);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a web page in which I am giving USER the options of
I have a web page that displays dynamic data which changes every 2 seconds.
I have a web page that links to another web application, which unfortunately only
I have web page which is passing a querystring parameter to page 2: <a
I have a web page which uses in PHP and a jQuery DataTable to
I have web page in PHP which displays all records in a table. I
I have a web page in which a fair amount of the content is
I have a web page on which i am applying Ajax enabled update progress
I have a Webforms, AJAX-enabled web page which, when rendering large amounts of data,
I have a web page with a read-only text box which shows some HTML

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.