91-9990449935 0120-4256464 |
AJAX EXAMPLETo create ajax example, you need to use any server-side language e.g. servlet, jsp, php, asp.net etc. Here we are using JSP for generating the server-side code. In this example, we are simply printing the table of the given number. Steps to create ajax example with jspYou need to follow following steps:
Load the org.json.jar filedownload this example, we have included the org.json.jar file inside the WEB-INF/lib directory. create input page to receive any text or numberIn this page, we have created a form that gets input from the user. When user clicks on the showTable button, sendInfo() function is called. We have written all the ajax code inside this function. We have called the getInfo() function whenever ready state changes. It writes the returned data in the web page dynamically by the help of innerHTML property. table1.htmlcreate server side page to process the requestIn this jsp page, we printing the table of given number. index.jspweb.xmlOutput
Next TopicAjax Example With Database
|