| Author |
How to get values html from servlet ?
|
Gustavo Siqueira
Ranch Hand
Joined: Jun 15, 2011
Posts: 94
|
|
Hello,
I'm trying develop a Newsletter with Javamail. So I thought in to use the ckeditor for the user send emails. However, I can't get values with servlet (request.getParameter("message");). The value is as blank.
How can to fix problem ?
Thanks you!
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56529
|
|
|
The problem is much more likely with how you are using ckeditor than with the servlet. Have you checked if the data is being sent on the request?
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Gustavo Siqueira
Ranch Hand
Joined: Jun 15, 2011
Posts: 94
|
|
Hello,
Yes.. The data not are being sent through from request.getParameter.
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56529
|
|
I meant have you opened the browser's debugger and checked that the data is actually being sent in the request? If not, that's the next thing you need to do.
If the data is in the request, the problem is in the servlet. If the data is not there, then the problem is on the HTML page.
|
 |
 |
|
|
subject: How to get values html from servlet ?
|
|
|