Problem Statement:
Create a JSP page to retrieve name and branch details from a html page and print the same.
Source Code:
details.html
Student Details
Name:
Branch:
display.jsp
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
Student Details
<% response.getWriter().write("Name is: " + request.getParameter("txtname")); response.getWriter().write("
Branch is: " + request.getParameter("txtbranch")); %>