Optimizing the website Performance using ASP.NET 4.5 (www.techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 8 months, 3 days ago

There are so many different ways you can optimize your website performance. You may think why we need to worry about website performance when internet connection speed is growing faster and faster. Just few examples: Google did a test, if their search page is 500ms slower then they are going to lose 20% their traffic. If Amazon runs 100ms slower then there is 1% drop in their sales which is nearly $1 million a day. So it is important build the website which are fast in response time.

3 comments |category: |Views: 33

tags: another

new Add a live kick counter to your blog >> liveImage

You can even customize the image by choosing your own colors, and then clicking the button below to update the preview and the html code:

  • "Kick It" text
  • "Kick It" background
  • kick count text
  • kick count background
  • border

Simply copy and paste this HTML into your blog post.


Users who kicked this story:
Comments:

posted by dpetersondpeterson(4397) 8 months, 2 days ago 0

Using a cookieless domains for static content will also improve performance, otherwise every time an image, css, or script file is requested all the cookies are sent in the request and the response.
To use cookieless domains, serve static content from a different subdomain (static.myawesomesite.com) and set your cookies for www.myawesomesite.com. In that way, requests to static.myawesomesite.com will not contain any cookies. If you use cookies heavily this can shave up to a couple kilobytes off of each request.

Reply

posted by vijaystvijayst(1311) 8 months, 2 days ago 0

Sprites are one way to reduce the number of image downloads. There is a <asp:SpriteControl> which is available as part of NuGet to do this.

Reply

posted by dpetersondpeterson(4397) replied to vijaystvijayst(1311), 8 months, 2 days ago 0

Vijay, there's also http://requestreduce.com/ which was on the front page a few days ago which will automatically sprite images for you.

Reply

information Login or create an account to comment on this story