Skip to main content

While selecting combobox value display the data from database using Ajax and jsp

First Create table in database
create table studentinfo
(
    name varchar(20),
    branch varchar(20),
    year varchar(4),
    email varchar(20)
)


insert into studentinfo values('Satyam','CSE','2013','satyam@gmail.com')
insert into studentinfo values('Anand','CSE','2013','anand@gmail.com')

Now create home.jsp page
<%@page contentType="text/html" pageEncoding="UTF-8"%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"

"http://www.w3.org/TR/html4/loose.dtd">

<html>
<head>
<title>Jsp Page</title>
<script>
   1:  
   2: function showuser(str)
   3: {
   4: var xreq;
   5: if(str=="")
   6: {
   7: document.getElementById("showtext").innerHTML="Plase Select Name";
   8: return;
   9: }
  10:  
  11: if(window.XMLHttpRequest)
  12: {
  13: xreq=new XMLHttpRequest();
  14: }
  15: else
  16: {
  17: xreq=new ActiveXObject("Microsoft.XMLHTTP");
  18: }
  19: xreq.onreadystatechange=function ()
  20: {
  21: if( (xreq.readyState==4) && (xreq.status==200) )
  22: {
  23: document.getElementById("showtext").innerHTML=xreq.responseText;
  24:  
  25: }
  26: }
  27: xreq.open("get","getuser.jsp?q="+str,"true");
  28: xreq.send();
  29:  
  30: }
</script>
</head>
<body>
<form>
<select name="user" onchange="showuser(this.value)" >
<option value="">Select Student name....</option>
<option value="Satyam">Satyam</option>
<option value="Anand">Anand</option>
<option value="Shruti">Shruti</option>
<option value="Diksha">Diksha</option>
<option value="Shweta">Shweta</option>
</select>
</form>
<br />
<div id="showtext">The response will come here</div>
</body>
</html>

Now create one more jsp page
getuser.jsp

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<%@page import="java.text.SimpleDateFormat"%>
<%@page import="java.util.*,java.sql.*,java.io.*" %>
<%@page import="javax.servlet.*" %>
<%@page import="javax.servlet.http.*" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>jsp Page</title>
</head>
<body>
<%
   1: ! Connection con; 
%>
<%
   1: ! Statement s; 
%>
<%
   1: ! ResultSet rs; 
%>
<%
   1:  String name=request.getParameter("q");
   2:  
   3: try{
   4:  
   5: Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
   6:  
   7: con=DriverManager.getConnection("jdbc:sqlserver://localhost:1433;databaseName=j2ee","sa","niitbpl123");
   8:  
   9: s=con.createStatement();
  10:  
  11: rs=s.executeQuery("select * from studentinfo where name='"+name+"'");
  12:  
  13: }catch(Exception e){ e.printStackTrace(); }
%>
<div id="dtl_table">
    <table border='3' cellpadding='5'
cellspacing='2' width="400px">
<tr bgcolor="66FF00">
<th>Name</th>
<th>Branch</th>
<th>Year</th>
<th>Email id</th>
</tr>
<tr>
<%
   1:  while(rs.next())
   2: { 
%>
<td><%1: = rs.getString(1) %></td>
<td><%1: = rs.getString(2) %></td>
<td><%1: = rs.getString(3) %></td>
<td><%1: = rs.getString(4) %></td>
<%
   1:  } 
%>
</tr>
</table></div>
</body>
</html>

Output:

1


2


3


4

Comments

Popular posts from this blog

WAP to calculate the monthly telephone bills as per the following rule: Minimum Rs. 200 for upto 100 calls. Plus Rs. 0.60 per call for next 50 calls. Plus Rs. 0.50 per call for next 50 calls. Plus Rs. 0.40 per call for any call beyond 200 calls.

  #include<iostream.h> #include<conio.h> void main() { int calls; float bill; cout<<" Enter number of calls : "; cin>>calls; if (calls<=100) bill=200; else if (calls>100 && calls<=150) { calls=calls-100; bill=200+(0.60*calls); } else if (calls>150 && calls<=200) { calls=calls-150; bill=200+(0.60*50)+(0.50*calls); } else { calls=calls-200; bill=200+(0.60*50)+(0.50*50)+(0.40*calls); } cout<<" Your bill is Rs. "<<bill; getch(); }   Output: Enter number of calls : 190 Your bill is Rs.250

Write a program to calculate the total expenses. Quantity and price per item are input by the user and discount of 10% is offered if the expense is more than 7000.

  #include<iostream.h> #include<conio.h> void main() { int totalexp, qty, price, discount; cout<<" Enter quantity: "; cin>>qty; cout<<" Enter price: "; cin>>price; totalexp=qty*price; if (totalexp>7000) { discount=(totalexp*0.1); totalexp=totalexp-discount; } cout<<" Total Expense is Rs. "<<totalexp; getch(); }