Hi,
In my jsp page, I have declared browser as follow,
<%
String browser = Sys.stripNull(request.getParameter("browser");
if(!browser.equals("") browser += " " + Sys.stripNull(request.getParameter("version");
%>
and follow that, I put in the html ...
<CENTER><B>We're sorry but your browser:<BR><%=browser%><BR>will not run this application correctly.
what happens here is when the page runs, the html shows up like ...
We're sorry but your browser:
Netscape 4.79 [en] (Windows NT 5.0; U)
what is this [en] and U, which does not make any sense.
what causes these funny characters to show up?
thanks for any help.
ni
In my jsp page, I have declared browser as follow,
<%
String browser = Sys.stripNull(request.getParameter("browser");
if(!browser.equals("") browser += " " + Sys.stripNull(request.getParameter("version");
%>
and follow that, I put in the html ...
<CENTER><B>We're sorry but your browser:<BR><%=browser%><BR>will not run this application correctly.
what happens here is when the page runs, the html shows up like ...
We're sorry but your browser:
Netscape 4.79 [en] (Windows NT 5.0; U)
what is this [en] and U, which does not make any sense.
what causes these funny characters to show up?
thanks for any help.
ni