| Author |
how to get value from enctype
|
Sophia Choi
Ranch Hand
Joined: Mar 22, 2002
Posts: 106
|
|
In JSP, there have servername and path in the form. The form contains enctype="multipart/form-data" and posts to a servlet. The problem is I can't use getParameter or session.getAttribute to retrieve value. So, how can I do? Thanks
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56202
|
|
|
getParameter only works with forms posted with the default enctype (URL encoded). When you post a multipart form you either need to parse the request data yourself, or use some 3rd party software to do it. I know this has been discussed many tmes here and in the JSP forum. A little searching may find what you are looking for.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
 |
|
|
subject: how to get value from enctype
|
|
|