91-9990449935 0120-4256464 |
AJAX example with DatabaseIn this example, we are interacting with the database. You don't have to make any extra effort. Only write the database logic in you server side page. In this example, we have written the server side code inside the index.jsp file. Steps to create ajax example with database through 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 press any key 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 id and name of the employee for the given id. index.jspOutput
Next TopicComment Form Example using AJAX in Java
|