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 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

Related Questions

I am attempting to write a 'User Control' in WinForms .NET (not ASP.NET). The
I'm attempting to write a custom widget and I want to use existing UI
I'm attempting to write my first custom Cocoa Framework and I want to expose
I'm attempting to write a custom MarkupExtension to make my life easier by giving
I'm attempting to write an AJAX control extender that can modify an AJAX Control
I am attempting to write a MarkupExtension to support the process of instantiating custom
When attempting to write/read cookies that have brackets in the name, it seems like
I have a Windows form which hosts a custom User Control. This User Control
I'm attempting to write a custom RegExpValidator in AS3 (similar to this ). I'm
I am attempting to write a custom membership class. It seems to work ok

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.