online test project on java using servlets and jsp
as i am doing online test project on java using jsp and servlets ,,,the problem is in the code of jsp file which i have sent,...,i used next and previous buttons and used two form tags ..,i need to place the next button and previous button side by side,but problem occuring calling servlet...,if place buttons in one row side by side,..,action performing for both button is same ,i mean it will call nextaptiduteservlet action only always,,,if i take of the form tag of preservlet out of table ...,both buttons works properly .....,so i want a solution for placing the two buttons side by side and the action should be performed properly......,
View Answers
July 30, 2012 at 11:46 AM
Here is a jsp application. Here we have created a table test(ques,op1,op2,op3,op4,ans) and answers(id,ans).
1)form.jsp:
<%@page import="java.sql.*"%>
<html>
<form method="post" action="result.jsp">
<table>
<%
Class.forName("com.mysql.jdbc.Driver").newInstance();
Connection connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/register","root";, "root");
Statement st=connection.createStatement();
ResultSet rs=st.executeQuery("Select * from test");
int i=1;
while(rs.next()){
%>
<tr><td><%=i%></td><td><%=rs.getString("ques")%></td><td><input type="radio" value="<%=rs.getString("op1")%>" name="radio<%=i%>"/><%=rs.getString("op1")%></td><td><input type="radio" value="<%=rs.getString("op2")%>" name="radio<%=i%>"/><%=rs.getString("op2")%></td><td><input type="radio" value="<%=rs.getString("op3")%>" name="radio<%=i%>"/><%=rs.getString("op3")%></td><td><input type="radio" value="<%=rs.getString("op4")%>" name="radio<%=i%>"/><%=rs.getString("op4")%></td></tr>
<%
i++;
}
%>
<tr><td><input type="submit" value="submit"></td></tr>
</table>
</form>
</html>
2)result.jsp:
<%@page import="java.sql.*"%>
<%
String st[]=new String[10];
for(int i=0;i<st.length;i++){
int j=i+1;
st[i]=request.getParameter("radio"+j);
System.out.println(st[i]);
}
Class.forName("com.mysql.jdbc.Driver").newInstance();
Connection connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/register","root";, "root");
Statement stmt=connection.createStatement();
ResultSet rs=stmt.executeQuery("Select ans from answers");
String ans="";
while(rs.next()){
ans+=rs.getString("ans")+" ";
}
int count=0;
String answers[]=ans.split(" ");
for(int i=0;i<answers.length;i++){
if(st[i].equals(answers[i])){
count++;
}
}
out.println("Your "+count+" answers are correct");
%>
Related Tutorials/Questions & Answers:
online test project on java using servlets and jsponline test project on
java using servlets and jsp as i am doing
online test project on
java using jsp and
servlets ,,,the problem is in the code...;Here is a
jsp application. Here we have created a table
test Using Servlets, JSP for Online ShoppingUsing Servlets,
JSP for
Online Shopping What is wrong with my code ?
JSP
<form action="LoginServlet "method="post" >
<table>
<tr ><td>Username:</td><td><input type="text" name="Id
Advertisements
Register page using servlets,jsp and java beansRegister page
using servlets,
jsp and
java beans i want code for register page
using jsp,serlets and
java beans.iam getting error for my code in
java...://www.roseindia.net/
jsp/user-registration-form-
using-jsp.shtml
Thanks
Online Test System ProjectOnline Test System Project I want a full ready-made
project on
online test system in
jsp. i am not
using servlet but only jsp.And backend database...://www.roseindia.net/
jsp/
online-quiz-application-jsp.shtml
online test projectonline test project i need
online test project in
java using struts...kindly help..
Have a look at the following link:
http://www.roseindia.net/struts/struts/struts2.2.1/onlinetestapp
Online Test System ProjectOnline Test System Project I want a full ready-made
project on
online test system in
jsp. i am not
using servlet but only jsp.And backend database as mysql. my email address is help me. send a full
project on
online test system
online examination system project in jsponline examination system
project in jsp How many and which data tables are required for
online examination system
project in
jsp in
java.
please give me the detailed structure of each table
using jsp and servlets andin Mvc architectureusing jsp and
servlets andin Mvc architecture how to insert a form data in different tables, that means education details in education table, address details in address table,like that and finally if we fetch all must come
online examination system project in jsponline examination system
project in jsp I am doing
project in
online examination system in
java server pages.
plz send me the simple source code in
jsp for
online examination system
java Servlets - JSP-Servletjava Servlets Hi
i am having a doubt regarding
servlets as i am... getting data from db and again i have to add that data to textbox
using html here i am not
using any
jsp's. i got up to retriving data from data base but i am
Project on mailing system using Java/JSPProject on mailing system
using Java/JSP I am making a
project on mailing system in
Java/
JSP.
How could I display the inbox messages on the home page of user?
Please tell me about how to handle these messages in database
java servlets - JSP-Servletjava servlets how to get the parameter value of input type file
using java servlets Hi,
You can use request.getParameter().
In
Jsp,
---
---
IN servlet,
String fileName=request.getParameter('fl');
If you
online examination system project in jsponline examination system
project in jsp thanks for providing me 6 tables for
online examination system. I want to know what will the id field of Answers1 table contain? Will it contain same id for all the questions of Set1 &
online examination system project in jsponline examination system
project in jsp thanks for providing me 6 tables for
online examination system.
I want to know what will the id field of Answers1 table contain?
Will it contain same id for all the questions of Set1 &
online examination system project in jsponline examination system
project in jsp Thanks for providing me the 6 tables.But I want to know will the id field of answers1 table be same for all questions of Set1? Will it be 1 or will be 1,2,3,...
What
Writing a file using servlets - JSP-ServletWriting a file
using servlets I'm
using a servlet to read an input from a
jsp file and write into a .txt file in my computer. The code is good until reading the data and creating a file in my space. but it is not writing
Using MYSQL Database with JSP & Servlets.
Using MYSQL Database with
JSP &
Servlets.
... acceres the MYSQL
database. Here I am
using MYSQL & tomcat server... on the mysql prompt shows
online
help.
mysql> help
java servlets - JSP-Servletjava servlets I am
using eclipse .
please help me to write a web application that follows mvc architecture and use jdbc connection pooling for oracle 10g
java-servlets - JSP-Servletjava-servlets I have one doubt.if we update resume in jobportal websites,
at that place i saw only some fields are possible to edit at a time.
how is it possible.
pls clarify my doubt any one.
I will be thankful to you
online shopping project in j2ee - JSP-Servletonline shopping
project in j2ee hello, I am making a
project online shopping
using jsp-servlet. I wanted to know that how do I implement following:
1) A non-registered user(or a registered user who has not signed-in) can browse
jsp -servletsjsp -servlets i have
servlets s1 in this
servlets i have created emplooyee object, other
servlets is s2, then how can we find employee information in s2
servlets online shopping project in j2ee - JSP-Servletonline shopping
project in j2ee hello, I am doing a
project on
online shopping implementing it with only
jsp-servlet.I wanted to know that do I need to incorporate any of struts or EJB in my
project (in any possible case which I
Online test Online test I am creating a
project for
online test system... and it will show on the same page,on completion of
test it will show result and that result will also store in the database.The code must be in
JSP-SERVLET
using online shopping projectonline shopping project sir,
plz can u send me the coding of simple application of
online shopping cart
project using jsp and
servlets which should be run in netbeans without any errors
online test application in javaOnline Test Application
Table Of Contents
Introduction To Application
Database Design
Creating Data Access Object (DAO) Design Pattern
Creating Views
Writing Actions
Mapping Application
Admin Module
User Module
Download
online test application in javaonline test application in java Can questions come in html file (test.html) if we link test.jsp with test.html
We have taken... the following link:
http://www.roseindia.net/
jsp/
online-quiz-application-jsp.shtml
JSP-Servlets-JDBC..
It will be helpful if it's made into sub modules,
JSP,
Driver Constants,
Servlets,
Java Beans...
JSP-
Servlets-JDBC Hi all,
1, Create - i want sample code... should be retrieved in
JSP and should be able to update
using JSP and update
Servlets Vs Jsp - JSP-ServletServlets Vs Jsp In
servlets and
Jsp's which one is important? and also tell me the Is
Servlets are best or
jsp's are best? give me the(reason also... with
servlets but not with
jsp's)Most of cases we use
jsp's for presentation.i.e
Servlets vs JSP - JSP-ServletServlets vs JSP What is the main difference between
Servlets and
JSP... and servlet act as a controller.
2)
JSP pages contain a mixture of HTML,
Java scripts,
JSP elements, and
JSP directives while servlet is totally uses
java code.
3
Servlets in JSF - JSP-ServletServlets in JSF Hi!
I am
using Java Visual Studio to develop my... in the form itself by double clicking why should i go for
servlets to write code....
Simply what is the role of
servlets in JSF.
which one is the best one..
jsp servlets - JSP-Servlet an application
using Servlets or
jsp make the directory structure given below link... files required)
/web.xml
/addstudent.html
After executing the
java files place the entire Student
Project in Tomcat/Webapps.
can u plzz explain me what
servlets using weblogic server - Java Beginnersservlets using weblogic server [J2EE:160043]Missing deployment descriptor "WEB-INF/web.xml" at "C:\
servlets\rgv.war"
im getting this error... the detail procedure to deploy a web application module
using weblogic..thnx
JSP using java - Java BeginnersJSP using java sir,
In my
jsp page contains 3 hyperlinks say (link1 link2 link3).I want to write some
java code
using servlet for each hyperlinks.how to forward
JSP page to servlet.I m
using 3 hyperlinks in my page.My
jsp and servletsjsp and servlets what is difference between
jsp and servlet??
what should a person use to develop website ??
JSP is used for view in MVC... the request submitted from browser and process the data and redirect it to
JSP