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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T08:11:18+00:00 2026-05-31T08:11:18+00:00

I have this code and i can only display it in a textbox <script

  • 0

I have this code and i can only display it in a textbox

<script runat="server">
protected void Page_Load(object sender, EventArgs e)
{

    string connect =  ConfigurationManager.ConnectionStrings["TDBSConnectionString"].ConnectionString;

    string query = "SELECT news, news_date FROM [IBSI].[dbo].[ibsi.news]";

    if (query != null)
    {
        using (SqlConnection conn = new SqlConnection(connect))
        {
             using (SqlCommand cmd = new SqlCommand(query, conn))
             {

              conn.Open();
              SqlDataReader rdr = cmd.ExecuteReader();
              if (rdr.HasRows)
              {
                   while (rdr.Read())
                   {
                      Textbox1.Text=rdr["news"].ToString();
                   }
              }
         }
    }
}
else 
{
      Response.Write("<p>No customer selected</p>"); 
}

}
</script

and i only display it here

<asp:TextBox ID="TextBox1" runat="server" Height="168px" TextMode="MultiLine" 
                        Width="303px"></asp:TextBox>

But in my database i have more than 1 data so i need a listview to display this items.
Please help me on how to do that.

  • 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-31T08:11:20+00:00Added an answer on May 31, 2026 at 8:11 am

    Sample HTML for Repeater

    <asp:Repeater ID="rpt" runat="server" >
        <HeaderTemplate>
            <table>
                <tr>
                    <td id="header" style="background:green;" runat="server">
                        textBox
                    </td>
                </tr>
        </HeaderTemplate>
        <ItemTemplate>
            <tr>
                <td>
                    <asp:TextBox ID="ed" runat="server" Text='<%#Eval("news") %>' autocomplete="off"></asp:TextBox>
                </td>
            </tr>
        </ItemTemplate>
        <FooterTemplate>
            </table>
        </FooterTemplate>
    </asp:Repeater>
    

    Sample Code

    public class News
    {
        public String news;
    }
    List<News> Listnews = new List<News>();
    using (SqlConnection conn = new SqlConnection(connect))
    {
        using (SqlCommand cmd = new SqlCommand(query, conn))
        {
    
            conn.Open();
            SqlDataReader rdr = cmd.ExecuteReader();
            if (rdr.HasRows)
            {
                while (rdr.Read())
                {
                    Listnews.Add(new News { news = rdr["news"].ToString() });
                }
            }
        }
    }
    
    rpt.DataSource = Listnews;
    rpt.DataBind();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

You can only have one form runat=server per page apparently. My page has one
I have this code so I can grab the values ind the dataset before
I have problem compilin this code..can anyone tell whats wrong with the syntax CREATE
i have this code in c# doc.SelectSingleNode(WhoisRecord/registrant/email).InnerText how can i check whether it is
I have this code below. As you can see I am passing two variables
I have this code to update users data, but I can't write the for
Challenge: I have this code that fails to compile. Can you figure out what's
how exactly I can use public methods (non-virtual) with NHibernate? I have this code:
Ok, if I have this right, my code can get cookies at a specific
I encountered something that I can't understand. I have this code: cout << f1

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.