S
swetha
I have a weird problem regarding Arabic text display on my html page.
Part of the text I wish to display does not show up on the screen but
when I right-click to "View Source" I can find it in the source. This
happens only while I'm trying to display Arabic text on the page. The
same page when displayed in English looks absolutely fine. Displaying
Arabic text on other pages is not posing any problem.
Following is the jsp code being used:
<%
if(i < size)
{
%>
<c:set var="ttl" value="<%="tD" + i%>"/>
<c:set var="tr" value="<%="tr" + i%>"/>
<tr>
<td title="<fmt:message key="${ttl}"/>">
<fmt:message key="${tr}"/>
</td>
</tr>
<%
}
%>
When i = 0, the var tr0 does not appear on the html page displayed on
my browser but appears in the View Source. Also, the tr0 property is
present in my properties file from which the values are retrieved (or
it would not appear in the source).
What's happening here? Any suggestions?
Swetha
Part of the text I wish to display does not show up on the screen but
when I right-click to "View Source" I can find it in the source. This
happens only while I'm trying to display Arabic text on the page. The
same page when displayed in English looks absolutely fine. Displaying
Arabic text on other pages is not posing any problem.
Following is the jsp code being used:
<%
if(i < size)
{
%>
<c:set var="ttl" value="<%="tD" + i%>"/>
<c:set var="tr" value="<%="tr" + i%>"/>
<tr>
<td title="<fmt:message key="${ttl}"/>">
<fmt:message key="${tr}"/>
</td>
</tr>
<%
}
%>
When i = 0, the var tr0 does not appear on the html page displayed on
my browser but appears in the View Source. Also, the tr0 property is
present in my properties file from which the values are retrieved (or
it would not appear in the source).
What's happening here? Any suggestions?
Swetha