Foros de discusión

the uses of UploadPortletRequest

thumbnail
asile elisa, modificado hace 13 años.

the uses of UploadPortletRequest

Regular Member Mensajes: 126 Fecha de incorporación: 17/02/10 Mensajes recientes
hi everyone,

what is the diffrence between these two codes:

UploadPortletRequest uploadReq = PortalUtil.getUploadPortletRequest((ActionRequest)req);
String cmd = uploadReq.getParameter(Constants.CMD);


String cmd = ParamUtil.getString(req, Constants.CMD);


thanks in advance.
Mazhar Anwar, modificado hace 13 años.

RE: the uses of UploadPortletRequest

Regular Member Mensajes: 125 Fecha de incorporación: 5/02/10 Mensajes recientes
If your HTML Form's enctype is "multipart/form-data" then you need to use UploadPortletRequest and if your from is just a simple html form you can use ParamUtil. emoticon
thumbnail
mohiden abdul kader, modificado hace 11 años.

RE: the uses of UploadPortletRequest

Junior Member Mensajes: 38 Fecha de incorporación: 8/08/12 Mensajes recientes
thank u ,I help me lot