Tuesday, May 27, 2014

Some support for load and web tests in Visual Studio



Make JavaScript and CSS External

Using external files generally produces faster pages because the JavaScript and CSS files are cached by the browser. Inline JavaScript and CSS increases the HTML document size but reduces the number of HTTP requests. With cached external files, the size of the HTML is kept small without increasing the number of HTTP requests thus improving the performance.

Put Javascript file at the end of the document

Unlike StyleSheets, it is better to place (java)scripts to the end of the document. Progressive rendering is blocked until all StyleSheets have been downloaded. Scripts cause progressive rendering to stop for all content below the script until it is fully loaded. Moreover, while downloading a script, browser does not start any other component downloads, even on different hostnames.
So, always have scripts at the end of the document.

Discovering the BlogBooker website for creating a pdf of my Blog

With the help the website BlogBooker a can easily create a pdf file from my Blog. So I can print, mail, backup and transfer my complete Blog as a snapshot. Thanks...