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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T00:00:37+00:00 2026-05-23T00:00:37+00:00

I have a piece of code that creates dynamic controls using 2 while loops.

  • 0

I have a piece of code that creates dynamic controls using 2 while loops.
As you can see, I am forced to declare both LiteralControls INSIDE each while loop because if I don’t, the puBugList.Controls.Add(lineBreak) will not acknowledge.

Q: Why can I not see the scope of the controls from inside a while loop?

    //this control is not acknowledged
    //LiteralControl lineBreak = new LiteralControl("<br/>"); 
    while (nwReader.Read())
    {
        int id = (int)nwReader["bid"];
        string user = (string)nwReader["buname"];
        string prob = (string)nwReader["bproblem"];
        string content = id + ". " + user + ": " + prob + "<br/>";
        Label lb = new Label();
        lb.Text = content;
        phBugList.Controls.Add(lb);

        //forced to declare 1 here
        LiteralControl lineBreak = new LiteralControl("<br/>");

        String sqlSelRep = "SELECT * FROM [reply] WHERE bid=@bid";
        SqlCommand cmdSelRep = new SqlCommand(sqlSelRep, conn);
        cmdSelRep.Parameters.AddWithValue("@bid", id);
        SqlDataReader repReader = cmdSelRep.ExecuteReader();
        while (repReader.Read())
        {
            //forced to declare another 
            LiteralControl lineBreak2 = new LiteralControl("<br/>");one here
            string msg = (string)repReader["rmsg"];
            Label lbRep = new Label();
            lbRep.Text = "Admin: \"" + msg + "\"";
            phBugList.Controls.Add(lbRep);
            phBugList.Controls.Add(lineBreak2);
        }
        repReader.Close();


        if (Convert.ToInt32(Session["user"]) == 1)
        {
            phBugList.Controls.Add(lineBreak);

            TextBox tbRep = new TextBox();
            tbRep.ID = "tb" + id.ToString();
            phBugList.Controls.Add(tbRep);

            LinkButton butRep = new LinkButton();
            butRep.ID = "rep" + id.ToString();
            butRep.Text = " Reply";
            butRep.Click += InsertReply;
            phBugList.Controls.Add(butRep);

            LinkButton butDel = new LinkButton();
            butDel.ID = "del" + id.ToString();
            butDel.Text = " Delete";
            butDel.Click += DeleteBug;
            phBugList.Controls.Add(butDel);

            phBugList.Controls.Add(lineBreak);
        }
        phBugList.Controls.Add(lineBreak);
    }
  • 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-23T00:00:38+00:00Added an answer on May 23, 2026 at 12:00 am

    I think you’r problem is that if you instantiate LiteralControl outside the while loop you are effectively using the same object throughout your code, and you cannot add the same control twice to a Controls collection of another control.

    Try the following:

     LiteralControl lineBreak = null;
     (...)
    
     while (repReader.Read())
     {
          literalControl = new LiteralContro(...);
     }
    

    Anyway, unless you need lineBreak in scope outside the while loop there is nothing wrong declaring the variable inside the loop so your code is perfectly fine.

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

Sidebar

Related Questions

I have a piece of code that creates an SQL Server Express 2008 in
Does anyone have a piece of JavaScript code that creates a cookie and stores
I have a piece of PHP code that loops through to display all the
I have a piece of C# code that add the values of an enum
I have a piece of C# code that needs to convert a string array
I have a piece of code here that i really could use some help
Let's say I have to implement a piece of T-SQL code that must return
I write a simple piece of code that creates a div and assign it
I have this piece of code (summarized)... AnsiString working(AnsiString format,...) { va_list argptr; AnsiString
I have a piece of code looking like this : TAxis *axis = 0;

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.