Hi,
I have a text area in my web page. Where I wrote some java program and submitted the form. While I use request.getparameter("textarea_name"); I got the text, but the break(for the next line) is not fetched.
For example,
In textarea I wrote,
class Add{
public Add(){
int a;
int b;
}
}
But, I got in the request as,
class Add{public Add(){int a;int b;}}
I need to get the same pattern.
Please, help me to achieve.
Thanks.