MY mENU


Thursday 31 May 2012

Turn Off Window Animation


You can shut off the animation displayed when you minimize and maximize Windows. Open Registry Editor and go to HKEY_CURRENT_USER\Control panel \Desktop\WindowMetrics. Create a new string value "MinAnimate". Set the value data of 0 for Off or 1 for On

How does the JavaServer Pages technology work?


JSP pages use XML tags and scriptlets written in the Java programming language to encapsulate the logic that generates the content for the page. It passes any formatting (HTML or XML) tags directly back to the response page. In this way, JSP pages separate the page logic from its design and display. JSP technology is part of the Java technology family. JSP pages are compiled into servlets and may call JavaBeans components (beans) or Enterprise JavaBeans components (enterprise beans) to perform processing on the server. As such, JSP technology is a key component in a highly scalable architecture for web-based applications. JSP pages are not restricted to any specific platform or web server. The JSP specification represents a broad spectrum of industry input.