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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T00:59:04+00:00 2026-05-12T00:59:04+00:00

So I’m at the stage in web programming where I’m past the Look, Ma,

  • 0

So I’m at the stage in web programming where I’m past the “Look, Ma, I can put data in a grid and it shows up on the page.” I’m now at the, wow, this site is not as snappy as I want it to be. So, I enabled the “Net” tab in Firebug, closed my eyes, crossed my fingers, and went spelunking.

The first thing I noticed is that all of my .aspx pages are being “GET”ed at least three times. Is this normal? If not, what is “normal”? What affects the “GET”ing of the .aspx pages? I’m assuming that includes the time it takes to hit the database and render all the controls on the page. Is that true?

Perhaps what would really benefit me is a place I can look to get some “best practices” for these kinds of speed related issues.

Things to consider:

  • Using IIS 6.0 via HTTPS
  • We’re using Masterpages
  • We’re using Telerik controls

    • A RadMenu
    • A RadScriptManager
  • I’m certainly more of a thick client guy than a web guy

EDIT
Answers to questions below:

  • The response code is 200

EDIT
Screen shot added:
FirebugScreenshot http://img187.imageshack.us/img187/5873/firebughelp.jpg

EDIT Added Additional Screenshot to include Request Headers

EDIT

Added links

  • page source
  • My Master file as txt
  • My WebConfig (without connection strings, obviously)
  • 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-12T00:59:04+00:00Added an answer on May 12, 2026 at 12:59 am

    EDIT: Here is the source of your two extra page loads:

    <script type="text/javascript"
            src='<%# ResolveUrl("~/Common/jQuery/jquery-1.3.2.min.js") %>'> 
    </script>
    
    <script type="text/javascript"
            src='<%# ResolveUrl("~/Common/jQuery/jquery-ui-1.7.1.custom.min.js") %>'> 
    </script>
    

    As you can see in the rendered version the src attribute is empty, causing it to load the page two extra times.

    <script type="text/javascript" src=''></script>
    <script type="text/javascript" src=''></script>
    

    You can probably fix this by using the runat server tag and having it resolve the urls automatically.

    <script type="text/javascript"
            src="~/Common/jQuery/jquery-1.3.2.min.js"
            runat="server"
            ID="jQuery"> </script>
    <script type="text/javascript"
            src="~/Common/jQuery/jquery-ui-1.7.1.custom.min.js"
            runat="server"
            ID="jQueryUI"> </script>
    

    (or change <%# %> to <%= %> — since you need to have the version that outputs a string instead of the binding syntax).

    Original answer removed since it was not related to the actual problem.

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

Sidebar

Related Questions

No related questions found

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.