How to improve the performance and scalability of web application systems (ZT)

xiaoxiao2021-03-06  25

How to improve the performance and scalability of Web Application System (ZT) Date: Saturday, June 12, 2004 Location: Office weather: sunny Author: china First, to improve the performance of the paging file (@Page command attribute) 1, without the need for trying Status page Disable View Status: EnableViewState = "false"; 2, page caching without real-time update:; User session state: enablesessionState = "readonly"; 4, disable debug mode in the page: debug = "false"; 5, disable this feature when no page navigation: smatrnavigation = "false"; 6, no page Use this feature only: TRACE = "false": two, improve the scalability and scalability of the web application system 1. Save the user's session status in the database, this way is the most robust, and can guarantee the session state Never lose. How to improve the performance and scalability of Web applications (b) Date: June 15, 2004 Tuesday Location: Office weather: sunny Author: china 1, objects stored in the Session or Cache needs to be serialized in order to facilitate The data is acquired, and the speed of obtaining data is improved. 2. For page validation, a client script (JScript) and server-side verification can be used. Since client verification can avoid the CPU resource consumption generated to the server-side submission request, it is advocated; however, because the client code cannot be compatible with all browsers, the server-side verification is not less. 3, use the rationality of the user control. Since each user control is placed in a .ascx file, a @Register directive generates a separate HTTP or HTTPS directive, which will affect the entire page. The response speed; but the user control can encapsulate a set of functional packages in the project, and it is very good to realize the code reuse. How to improve the performance and scalability of Web applications (c) Date: Wednesday, 16 June 2004 Location: Office weather: sunny Author: china how to design a good user interface 1, if the contents of a screen to be displayed and can be too much When it is gradually presented to the user, it can be considered to use JavaScript to control the display timing of multiple IFAME content, avoiding excessive pages caused by excessive loading of the page to show too slow problems.

转载请注明原文地址:https://www.9cbs.com/read-43388.html

New Post(0)