How To: Compress ViewState in ASP.NET 2.0 - ViewState Compression with System.IO.CompressionWe can completely disable viewstate by setting EnableViewState to false in the page directive but you need extra programming effort for you to take care of the page state. It is a good idea to disable ViewState for the controls that do not actually need it such as Literals and Labels by setting Enab...
7 Easy-to-Apply Tips to Improve Your Web Site PerformanceA lot of articles have been written on website performance optimization lately but I want to share my hands-on-experience and important articles on the subject.
There are two types of performance:
* Server Performance
* Perceived Performance
Server Performance is associated with ...
JavaScript substring vs. substr with Examples - The Difference Between JavaScript String Extraction FunctionsWhen you write JavaScript, you need to know string manipulation functions. There is a slight difference between JavaScript substring() and JavaScript substr() which are both used to extract characters from strings.