Я использую rollno как объект сеанса, и я должен использовать это значение в атрибуте значения«HTML»поле ввода здесь мой jsp
кодированияКак использовать объект Session в атрибуте значения `html` поля ввода на JSP
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%@page import="javax.servlet.http.HttpSession"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
<%!HttpSession value=null; %>
</head>
<body>
<form action="ShowMarkServlet">
<% value=(HttpSession)session.getAttribute("rollno");%>
<%out.print(session.getAttribute("rollno")); %>
Rollnumber:<input type="number" value="<%=value%>" name="rollno"><br>
Enter the semester:<input type="number" name="semester" min="0" max="6">
<input type="submit" value="okay">
</form>
</body>
</html>
Вот мой код servlet
, который имеет значение rollno в этом сервлете, но показывает null в файле jsp.
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String rollno=request.getParameter("rollnumber");
System.out.println(rollno);
String report=request.getParameter("domainarea");
System.out.println(report);
HttpSession session=request.getSession();
session.setAttribute(rollno,"rollno");
if(report.equals("MarkDetail")){
request.getRequestDispatcher("/sem.jsp").forward(request, response);
}
Это зависит от того, что вы собираетесь с ним делать, понимаете, что эти htmls сформированы b y servlet, в котором jsp преобразуется после компиляции –
в порядке, но как получить доступ к этому объекту сеанса, он показывает null в jsp-дисплее '<% out.print (session.getAttribute (« rollno »)); %> ' – balan