Jerome.NET is an easy to use ASP.NET Ajax Framework. It consists on a series of ASP.NET web controls, called Ajax Controls, that are able to replace standard ASP.NET controls giving to your web pages full Ajax functionalities without having to write any line of code. The main ASP.NET AjaxControls are: AjaxButton: It replaces standard Buttons (such as the LinkButton or the HtmlButton). After the Button click,values contained on the input html elements of the page are sent to the server asynchronously. On server side, ASP.NET AjaxControls works in the same manner as ASP.NET controls. When they are updated, the web page is update too, asynchronously, using an Ajax response. AjaxSelect: It substitutes controls like ListBoxes and DropDownLists. TheAjax request/response process is fired when the user select an item in the ListBox or in the DropDownList. AjaxChoice: It substitutes controls like CheckBoxes and RadioButtons. The Ajax request/response process is fired when the user change the state of some checkboxs or radiobuttons contained on the web page. When waiting for a server response, Jerome.NET is able to diplayajax visual effects to the end user blocking the user interface until the refreshed content reach the client' browser. |