Advertisement
Advertisement
| 05.16.2008 at 06:16AM PDT, ID: 23408114 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: |
// the three buttons
<button type="submit" name="process" value="select">Select</button>
<button type="submit" name="process" value="update">Update</button>
<button type="submit" name="process" value="pick">Pick</button>
// the servlet outputs which button was selected (except in IE)
button = request.getParameter("process");
out.println("Button: " + button);
|