大熊猫 Moderator 管理成员 VIP 注册 2002-01-16 消息 22,826 荣誉分数 127 声望点数 243 2002-02-28 #1 哪位高手知道如何不通过JSP,HTML Form来调用Servlet.帮帮忙,作业急着交。
J john_o 新手上路 注册 2002-01-20 消息 35 荣誉分数 0 声望点数 0 2002-03-11 #2 Servlet is used to handle HTTP request. To invoke servlet, you need to send HTTP request to the port, which the servlet server is listening to. HTML Form is one of ways to send the HTTP requset. In Java progam, you can use URL class to send request.
Servlet is used to handle HTTP request. To invoke servlet, you need to send HTTP request to the port, which the servlet server is listening to. HTML Form is one of ways to send the HTTP requset. In Java progam, you can use URL class to send request.