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

How can I write an ASP.NET (C#) application that will render a page can
I have created a REST server under ASP.NET and I can't figure out the
I have an ASP.NET page that gets a list of game server ip addresses
I was able to setup some ASP.NET Image controls to render images from a
I have been writing a bunch of generic ASP.NET controls, and one thing I
I have added some web methods to my ASP.NET page like the following to
I've an asp.net page having a server side submit button and 2 textboxes which
Assume that: An ASP.NET MVC3 Page (using visual studio debug server) calls a WCF
Is it possible to call Server.Execute with a .NET .aspx page from classic ASP?
I'm trying to serve a pdf file from a database in ASP.NET using an

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.