Student.html <html> <body> <form name="f1" method="Post" action="http://localhost:8080/Servlet/Student"> <fieldset> <legend><b><i>Enter Student Details :</i><b></legend> Enter Roll No :  <input type="text" name="txtsno"><br><br> Enter Name :    <input type="text" name="txtnm"><br><br> Enter class :      <input type="text" name="txtclass"><br><br> <fieldset> <legend><b><i>Enter Student Marks Details :</i><b></legend> Subject 1 :      <input type="text" name="txtsub1"><br><br> Subject 2 :      <input type="text" name="txtsub2"><br><br> Subject 3 :      <input type="text" name="txtsub3"><br><br> </fieldset> </fieldset> <div align=center> <input type="submit" value="Result"> </div> </form> </body> </html>
Student.php import java.io.*; import javax.servlet.*; import javax.servlet.http.*; public class Student extends HttpServlet { public void doPost(HttpServletRequest req,HttpServletResponse res)throws IOException,ServletException { int sno,s1,s2,s3,total; String snm,sclass; float per; 40 res.setContentType("text/html"); PrintWriter out=res.getWriter(); sno=Integer.parseInt(req.getParameter("txtsno")); snm=req.getParameter("txtnm"); sclass=req.getParameter("txtclass"); s1=Integer.parseInt(req.getParameter("txtsub1")); s2=Integer.parseInt(req.getParameter("txtsub2")); s3=Integer.parseInt(req.getParameter("txtsub3")); total=s1+s2+s3; per=(total/3); out.println("<html><body>"); out.print("<h2>Result of student</h2><br>"); out.println("<b><i>Roll No :</b></i>"+sno+"<br>"); out.println("<b><i>Name :</b></i>"+snm+"<br>"); out.println("<b><i>Class :</b></i>"+sclass+"<br>"); out.println("<b><i>Subject1:</b></i>"+s1+"<br>"); out.println("<b><i>Subject2:</b></i>"+s2+"<br>"); out.println("<b><i>Subject3:</b></i>"+s3+"<br>"); out.println("<b><i>Total :</b></i>"+total+"<br>"); out.println("<b><i>Percentage :</b></i>"+per+"<br>"); if(per<50) out.println("<h1><i>Pass Class</i></h1>"); else if(per<55 && per>50) out.println("<h1><i>Second class</i></h1>"); else if(per<60 && per>=55) out.println("<h1><i>Higher class</i></h1>"); out.close(); } }
Web.xml <?xml version="1.0" encoding="ISO-8859-1"?> <web-app> <servlet> <servlet-name>Student</servlet-name> <servlet-class>Student</servlet-class> </servlet> 41<servlet-mapping> <servlet-name>Student</servlet-name> <url-pattern>/Student</url-pattern> </servlet-mapping> </web-app>
Search
Blog Archive
-
▼
2017
(64)
-
▼
March
(44)
- Write a Socket program in java in which client acc...
- Write a Socket program in java for chatting applic...
- Create a JSP page to accept a number from an user ...
- Write a JSP script to check whether given mail ID ...
- Write a JSP script to accept the details of Studen...
- Write a JSP script to accept username, store it in...
- Write a SERVLET program in java to accept details ...
- Write a SERVLET program that provides information ...
- Write a SERVLET program which counts how many time...
- Write a Multithreading program in java to convert ...
- Write a java program which will display name and p...
- Write a Multithreading program in java to display ...
- Write a java program using multithreading to execu...
- Write a Multithreading program in java using Runna...
- Write a java program to simulate traffic signal us...
- Write a menu driven java program for the following
- Write a java program to accept the details of coll...
- Write a JDBC application using swing for the follo...
- Write a JDBC program in java to display details of...
- Write a JDBC program to delete the records of empl...
- Write a JDBC program to accept the details of cust...
- Don't Quit Inspiring Poem..
- Something Very useful information
- C++ Program.Write a program to display area of squ...
- C++ Program. Write a program to display area of tr...
- C++ Program .Write a program convert fharenhite to...
- C++ Program .Write a program to display simple int...
- C++ Program .Write a program to input an integer n...
- C++ Program .Write a program to print factorial us...
- C++ Program .Write a program to print following pa...
- C++ Program .Write a program to nested structure
- C++ Program .Write a program to open file for reading
- C++ Program .Write a program to append the content...
- C++ Program .Write a program to create new file an...
- C++ Program .Write a program to accept n book deta...
- C++ Program Write a ‘C’ Program to count the numbe...
- C++Write menu driven program to convert decimal nu...
- C++ program to check whether given number is Palin...
- Write a C program to accept three integers as com...
- Write a program, which accepts a number n and disp...
- Write a menu driven program in C to create a stru...
- Write a C program to accept n different numbers a...
- Write a C program to calculate sum of digits till...
- Write a C program to swap two numbers using bitwis...
-
▼
March
(44)
Popular Posts
-
Emp.html <html> <body> <form method="POST" action="Lic.php"> Enter EMP No : <input ty...
-
class SortCity { public static void main(String arg[]) { String name[]=new Stri...
-
#include<stdio.h> #include<conio.h> main() { int num,rem=0,digit; clrscr(); printf("Enter number="...
-
Program to accept Book details of ‘n’ books as book_title, author, publisher and cost. Assign the accession number to each book in incre...
-
<?php interface Cyl { function area(); functi...
Categories
- BCA Sem VI Advance Java Slips Solution
- Ebooks
- FYBCA ( Sem–II) Assignment No.2 Decision making and looping.(solved assignment)
- FYBCA ( Sem–II) Assignment No.3 using function.(solved assignment)
- FYBCA ( Sem–II) Assignment No.4 Array program.(solved assignment)
- INFORMATION ABOUT TALLY.ERP 9
- RDBMS Assignment
- RDBMS ASSIGNMENT
- TYBCA (Sem IV) Java Programs
- TYBCA (Sem VI) Adv Java Programs
- TYBCA PHP Assignment