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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T00:49:00+00:00 2026-05-13T00:49:00+00:00

I am attempting to write a custom control. I want to allow its user

  • 0

I am attempting to write a custom control. I want to allow its user to specify a DataSourceId (much like GridView, Repeater, etc.).

I can get find the DataSource that corresponds to the id. And I can get the associated DataSourceView. But the only way to get the data out appears to be with an asynchonous Select method. Of course, I can set up the callback such that my code blocks until the callback occurs. But this is requiring so many weird gyrations that I suspect that I am doing something wrong.

If I want a control to function like some of the other ASP.NET data controls, what should I be doing differently?

Here’s a bit that I’ve written:

    string dataSourceId = "SomeDataSourceForTesting";
    protected override void RenderContents(HtmlTextWriter writer)
    {
        IDataSource ds = (IDataSource)Parent.FindControl(dataSourceId);
        List<string> viewNames = new List<string>();
        foreach(string name in ds.GetViewNames())
        {
            viewNames.Add(name);
        }
        string viewname = viewNames[0];
        writer.WriteLine("the viewname is " + viewname);
        DataSourceView view = ds.GetView(viewname);
        view.Select(...); //this really has to be asynchronous?
        //write out some stuff from the data source
    }
  • 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-13T00:49:01+00:00Added an answer on May 13, 2026 at 12:49 am

    Which type of DataBound control do you want? If you want tabular format you should derive your control from System.Web.UI.WebControls.DataBoundControl. And for hierarchical format derive from System.Web.UI.WebControls.HierarchicalDataBoundControl. Both of them have a property to assign a DataSource control.

    For DataBoundControl you should override the PerformDataBinding. This method has a parameter named data that contains the provided data from DataSource.

    public class Test : System.Web.UI.WebControls.DataBoundControl
    {
    
        protected override void PerformDataBinding(System.Collections.IEnumerable data)
        {
            base.PerformDataBinding(data);
        }
    
    }
    

    For HierarchicalDataBoundControl you should override a method with the same name as DataBoundControl. And get view via GetData method.

    public class Test : System.Web.UI.WebControls.HierarchicalDataBoundControl
    {
    
        protected override void PerformDataBinding()
        {
            base.PerformDataBinding();
    
            System.Web.UI.HierarchicalDataSourceView view = base.GetData("View Path");
        }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 242k
  • Answers 242k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer In C++98 and C++03, you should pass const& bar and… May 13, 2026 at 7:40 am
  • Editorial Team
    Editorial Team added an answer If your server requires the client to present a certificate,… May 13, 2026 at 7:40 am
  • Editorial Team
    Editorial Team added an answer The "model" part of MVC refers to the data access… May 13, 2026 at 7:40 am

Related Questions

I am attempting to write a 'User Control' in WinForms .NET (not ASP.NET). The
I am attempting to write a MarkupExtension to support the process of instantiating custom
I am trying to write a custom code generator that can parse stored procedures.
I am completely perplexed with how my Queue is function. I am attempting (and

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.