By
using forms (also specifiying some variable_name for each form component) in
HTML page, sending them with GET or POST method you can send information to
servlet. On the server side you implement the corresponding doGet(Request,
Response) or doPost(Request, Response) method. You can extract the value of a
specific HTML form variable by <some_string_value =
Request.getParameter("any_form_var_name");>. See example servlets
implementing doGet/doPost methods.
|
Re: How can run my servlet using HTML page?
Murat Buyukkal ([EMAIL PROTECTED]) Fri, 19 Apr 2002 00:12:48 -0700
- How can run my servlet using HTML page? Halil AKINCI
- Re: How can run my servlet using H... Vivek Bhardwaj
- Murat Buyukkal ([EMAIL PROTECTED])