i have a variable called param, which has the value I told \"I will come\", in JSP am assigning this to a input tag's value as
<input type="text" value="${param}"/>
what is happening is that the value am getting is I told \, i.e am getting value only till the first ", but am escaping this " with a \,but still am getting this. how can I solve this?