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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T18:12:42+00:00 2026-06-16T18:12:42+00:00

Hye all. i have div in index.aspx page like this <div id=MainDiv runat=server> and

  • 0

Hye all.

i have div in index.aspx page like this

<div id="MainDiv" runat="server">

and i am creating div from server side(At run time) like

 for (Int32 i = 0; i < 4; i++)
    {

        //Create here divFinal
        HtmlGenericControl divFinal = new HtmlGenericControl("div");
        divFinal.ID = i.ToString();

        divFinal.Attributes.Add("class", "column");


        mainDiv.Controls.Add(divFinal);
        //add to maindiv


        HtmlGenericControl div = new HtmlGenericControl("div");
        div.ID = "t_e_" + i.ToString() + "_a";
        div.Style["background-color"] = "#CFD8E6";
        div.Attributes.Add("class", "grid");
        div.Attributes.Add("onclick", "OnMouseDownDiv(this)");

        div.Attributes.Add("onmouseover", "OnMouseDown(this)");
        div.Attributes.Add("onmouseout", "OnMouseUp(this)");
        divFinal.Controls.Add(div);

        // add to dvfinal


    }

After gen rate its look like this in HTML form

 <div id="mainDiv"><div id="0" class="column"><div id="t_e_0_a"></div></div><div id="1" class="column"><div id="t_e_1_a"></div></div></div>

Now I need to find div id t_e_0_a inside main Divdiv.

HtmlGenericControl div = 
    ((HtmlGenericControl)showdiv.FindControl("0")); 

But its give me error….

  • 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-06-16T18:12:45+00:00Added an answer on June 16, 2026 at 6:12 pm

    You can’t do it like you want as it is not a control. You should place runat="server" attribute on it, or you can get it somehow from showdiv.InnerHtml – there it should be presented as a string which you can parse with some HTML parser for .net (for instance, HTMLAgilityPack suggested here)

    To create server side controls at run time, you can use something like below:

    for (Int32 i = 0; i < 2; i++)
    {
            HtmlGenericControl div = new HtmlGenericControl("div");
            div.ID = i.ToString();
            div.InnerHtml = i.ToString();
            div.ClientIDMode = ClientIDMode.Static; //this is for .NET 4.5 only. Required to have ClientID the same as ID.
            showdiv.Controls.Add(div);
    }
    

    and than, after controls are added, you should be able to use something like this:

    HtmlGenericControl div=((HtmlGenericControl)showdiv.FindControl("1"))
    

    to get those controls. But please remember that controls added like that, must be added for each request.

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

Sidebar

Related Questions

Hye all. I have a gui program. My question is how can i make
Hye guys. Okay. I have done this coding. But it seems have error. Can
Hye guys, I have created jquery ajax file uploader, but I have one problem
Hye alls.. this is my code that cronjob will do.. $query = UPDATE program
Hye! This is my first question here, so sorry in advance if I don't
hye guys.. i have a problem where i did'nt knw what the error i
With the following code, I am creating a list: scales <- c(p=hye, r=t3) details
Hye Guys, I'm busy working on a time series and am trying to find
Hye guys, I included a screenshot to help clarify my problem: http://i40.tinypic.com/mcrnmv.jpg . I'm
Hye guys, I installed a wufoo form on one of my websites. It links

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.