Can anybody tell how to assign a value coming from \" into jsp variable ?
you can use the following to get the value in to variable,
For example there is a string avalue,
String avalue="";
Now you can assign a property value to it by using,
avalue=request.getAttribute("a");
above will gives the property value to a string variable. otherwise u can set the value and then assign it through getAttribute.