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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T01:30:23+00:00 2026-05-27T01:30:23+00:00

Can anyone guide me what C# code should I write for getting page load

  • 0

Can anyone guide me what C# code should I write for getting page load time of each URL if the URLs are given as an input ?

OR

if possible please provide me link to any software that does that. Any software that takes several URL as input and provides the page load time for each URL.

  • 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-27T01:30:24+00:00Added an answer on May 27, 2026 at 1:30 am

    Do you want to measure the time it takes for the first request to be answered, or do you want to include the downloading of style and external scripts and clientside rendering?

    The first can simply be solved by using a WebClient.

    WebClient client = new WebClient ();
    
    // Add a user agent header in case the 
    // requested URI contains a query.
    
    client.Headers.Add ("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)");
    
    Stopwatch stopwatch = new Stopwatch();
    stopwatch.Start();
    
    Stream data = client.OpenRead (@"your-url-here");
    StreamReader reader = new StreamReader (data);
    string s = reader.ReadToEnd();
    
    stopwatch.Stop();
    Console.WriteLine("Time elapsed: {0}", stopwatch.Elapsed);
    
    data.Close();
    reader.Close();
    

    While for the latter, put a WebBrowser on a form where you create a method for consuming the DocumentCompleted event:

    // in your form declarations
    Stopwatch _stopwatch = new Stopwatch();
    String _url = @"your-url-here";
    
    // in the button-click or whenever you want to start the test
    _stopwatch.Start();
    this.WebBrowser1.Navigate(_url);
    
    // The DocumentCompled event handler
    private void WebBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
    {
        if (e.Url == _url)
        {  
            _stopwatch.Stop();
            Console.WriteLine("Time elapsed: {0}", _stopwatch.Elapsed);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can anyone guide me with the simple javascript code for creating an image gallery
Can anyone guide how to display map on MapView with iframe code. I try
Can anyone guide me how to code the arrow line in different direction. wa
Can anyone guide me with sample code regarding how to check whether mobile device
Can anyone guide on how to debug a JNI code on Linux using GDB
Can anyone guide me in the correct way to build a colored bubble/circle programmatically?
Can anyone guide me what could be the problem in the mentioned below:- alt
Can anyone point me to a guide for creating inf files? In particular, I'm
Does anyone know of an ASP.NET guide to implementing OpenID and what information can
can any one guide me how to get parameter specially image from the given

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.