|
Ajax taglib ver. 1.7 Custom JSP taglib lets you deploy Ajax approach in your application.
Tag AjaxDiv lets you define an area in your HTML code that will be periodically
updated through asynchronous HTTP requests. For example:
<script language="JavaScript" src="cjajax.js"></script>
<%@ taglib uri="taglib.tld" prefix="a" %>
<a:AjaxDiv id="i1" url="newContent.jsp" timeout="10">
this content will be updated every 10 seconds
</a:AjaxDiv>
Try It Out: http://www.servletsuite.com/servlets/ajaxdivtag.htm
|