G
Gast
Gast
hallo zusammen, ich benötige einbischen hilfe weil ich dumm bin :?
also ich hab ein Formular wo ich name und vorname eintrage... und diese dann durch ein Button in einem Servlet ausgeben will.....
Problem.. das Servlet gibt immer name und vorname = null aus........
JSP...
Servlet...
also ich hab ein Formular wo ich name und vorname eintrage... und diese dann durch ein Button in einem Servlet ausgeben will.....
Problem.. das Servlet gibt immer name und vorname = null aus........
JSP...
Code:
<%--<%@page import="IndexBean"%>--%>
<%--<jsp:useBean id="indexBean" class="beans.IndexBean" />--%>
<%--
The taglib directive below imports the JSTL library. If you uncomment it,
you must also add the JSTL library to the project. The Add Library... action
on Libraries node in Projects view can be used to add the JSTL 1.1 library.
--%>
<%--
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
--%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<body>
<h1>Logindaten </h1>
<p class=MsoNormal style='margin-bottom:12.0pt'>
Name <INPUT TYPE="text" SIZE="30" NAME="name">
Vorname <INPUT TYPE="text" SIZE="30" NAME="vorname">
<FORM METHOD=GET ACTION="http://localhost:8084/WebApplication1/ausgabe12">
<INPUT TYPE="submit" name="submit1" VALUE="Abschicken"></p>
</form>
</div>
</body>
</html>
Servlet...
Code:
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.PrintWriter;
public class ausgabe12 extends HttpServlet
{
/**
*
*/
private static final long serialVersionUID = 1L;
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException
{
String title = "Ausgabe";
response.setContentType("text/html");
PrintWriter out = response.getWriter();
out.println("<html>"); out.println("<head>"); out.println("<title>" + title + "</title>"); out.println("</head>");
out.println("<body bgcolor=\"white\">");
out.println("<h1> Test: </h1>");
out.print("Name: ");out.print(request.getParameter("name")); out.println("
");
out.print("Vorname: ");out.print(request.getParameter("vorname")); out.println("
");
out.println("</body>");
out.println("</html>");
out.close();
}
}