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

The Archive Base Latest Questions

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

When I serve an ASP.NET page, can I render the various controls on the

  • 0

When I serve an ASP.NET page, can I render the various controls on the page in parallel?

I have a few Telerik controls (RadGrids) on the page and when I step through the page being loaded, it seems as though the controls are databound and rendered serially.
Maybe this behavior is because I am hooked in with the debugger.

Is there anyway to load the page and have select controls build on separate threads? Is that even conceptually possible or must it be done sequentially?

  • 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-16T10:03:54+00:00Added an answer on May 16, 2026 at 10:03 am

    You have a couple of options. You could use the ASP.NET asynchronous page model. The idea would be that you load the data for each control asynchronously and then bind that data to each control as it is retrieved.

    It would look something like this:

    protected void Page_Load(object sender, EventArgs e)
    {
        if (Page.IsAsync) {
            dataSource.GetDataCompleted += 
              new GetDataCompletedEventHandler(GetDataCompleted);
            dataSource.GetDataAsync();
        }
        else {
            _yourCtl.DataSource = dataSource.GetData();
            _yourCtl.DataBind();
        }
    }
    
    void GetDataCompleted(object sender, GetDataCompletedEventArgs e) {
        _yourCtl.DataSource = e.Result;
        _yourCtl.DataBind();
    }
    

    You would do the same for each control on the page. The end result is that the time to render the page will equal the time to render the slowest-rendering control.

    An alternative method would be to use AJAX to load the controls. I’m not familiar with the Telerik RadGrid control, but I would assume that it supports AJAX. Here’s a link to a Telerik demo page that shows how to perform programatic client-side binding of a Telerik grid: http://demos.telerik.com/aspnet-ajax/grid/examples/client/databinding/defaultcs.aspx.

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

Sidebar

Related Questions

ASP.NET server-side controls postback to their own page. This makes cases where you want
I have a master page that contains an ASP.NET server side Menu control (System.Web.UI.WebControls.Menu)
In asp.net page, How can i call the javascript methods for form processing-submitting if
I am trying to use ASP.NET Server Controls (ASP.TextBox etc) with MVC (to take
I have an asp.net server control (with the asp: in its definition). The button
I have an ASP.NET server control which relies on JQuery for certain functionality. I've
The Problem When using asp.net server controls id attributes such as the following are
I'm trying to configure a dedicated server that runs ASP.NET to send mail through
I'm attempting to create an ASP.NET/C# page that runs a PowerShell script that will
How to get to know DNS name of the server where ASP.NET application is

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.