Hi All,
I have written below code but i am not able to fetch the value outside the jsp tag.
<%
String s=request.getParameter("glossar");
$CMS_SET(glossarVal,s)$
//here i am getting value of s
out.println("checking val"+s);
%>
console.log("check 1 to String Client: $CMS_VALUE(glossarVal)$");
now in console.log which is outside of jsp tag there i am getting empty value of "glossarVal".
Can anyone help me like how we can get the value outside the scripting tag.
Thanks