Hi all,
I am using Java Servlets with XML and XSLt,
I am getting the values from text area in XSL , the value is using Escape method in Javascript.
The code is Like
src = frm.txtFeedBackDsc.value;
src=rtrim(src,' ');
src=ltrim(src,'');
dest= escape(src);
frm.hsFeedbackDsc.value=dest;
And the Value is stored in Database. If the value contains Special characters it should convert it into escape character and stored it.
For example it have a output in XSL : a b c means it stored it in database as a%20b%20c like this.
I print it in XSL again Using unescape method using javascript.
The code is like
src=document.txtFeedBack.value;
dest=unescape(src);
document.txtFeedBack.value =dest;
But my problem is when i search this element i got an unwanted data.
When i search like just 2 and start search, it displayed the above data also.
Is there any methods or solutions to solve this problem?
Thanks in advance for you help..
Myl