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

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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T09:03:30+00:00 2026-05-16T09:03:30+00:00

I have a listview which I would like to fill with self created user

  • 0

I have a listview which I would like to fill with self created user controls.But the problem is that the properties in the user control is not set. The usercontrols are displayed but the property values I enter is not set. Why is that?

Here is the aspx code.

    <div id="productView" class="productsMain">
    <div id="groupHeader" class="productsGroupHeader">
        <asp:Label ID="lblGroupHeader" runat="server" Text="Gruppe" />
    </div>
    <asp:ListView ID="pListView" runat="server">
        <LayoutTemplate>
            <ul class="productListView" id="pList">
                <asp:PlaceHolder ID="itemPlaceHolder" runat="server"></asp:PlaceHolder>
            </ul>
        </LayoutTemplate>
        <ItemTemplate>
            <li>
                <uc:Product ID="ucProduct" runat="server" />
            </li>
        </ItemTemplate>
        <EmptyDataTemplate>
            <div>
                Beklager - det er for tiden ingen varer i denne produktgruppen.
            </div>
        </EmptyDataTemplate>
    </asp:ListView>     
</div>

And here is the code behind

protected void Page_Load(object sender, EventArgs e)
{  
    Control product1 = LoadControl(@"~/UserControls/Product.ascx");
    ((UserControls_Product)product1).Test = 9999; 
    Control product2 = LoadControl(@"~/UserControls/Product.ascx");
    ((UserControls_Product)product2).Test = 8888; 

    List<UserControls_Product> l = new List<UserControls_Product>();
    l.Add((product1 as UserControls_Product));
    l.Add(product2 as UserControls_Product));       
    pListView.DataSource = l;
    pListView.DataBind(); 
}
  • 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-16T09:03:31+00:00Added an answer on May 16, 2026 at 9:03 am

    I am thinking again the issue here and I think that is totally different the way you need to handle it.

    You create controls and you send them in the repeater, but the repeater him self its create the same controls in every line. What you need to send is the parameters only.

    You make a list with int and you send to your control this values. Then its up to your control to make what its needs. For example.

    protected void Page_Load(object sender, EventArgs e)
    {  
        List<int> MyParam = new List<int>();
    
        MyParam.add(9999);
        MyParam.add(8888);
    
        pListView.DataSource = MyParam;
        pListView.DataBind(); 
    }
    
    public int GetTheProductID(object oItem)
    {
        return (int)oItem;
    }
    

    And here is how you get and send your parametres to your control.

    <ItemTemplate>
        <li>
            <uc:Product ID="ucProduct" runat="server" ProductID="<%#GetTheProductID(Container.DataItem)%>" />
        </li>
    </ItemTemplate>
    

    Now inside your control you have a public ProductID that you can use later on Page_Load()

    You can use not only int, but class or struct to the list to send a lot of data.

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

Sidebar

Related Questions

No related questions found

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.