can you provide a link to the site ?
Main Topics
Browse All TopicsI am worknig on an old application and seeing some errors while compiling the code in my JSO pages. I am not sure why I am getting these errors..
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I noticed similar issues in this page too...<center> tags issue..
<%!
Object op = null;
Vector v = null;
String str = null;
String main;
String name = "";
String id = "";
String chkview = "";
String lin = "";
String pwd = "";
%>
<html>
<head>
<link rel="stylesheet" type="text/css" href="cs1.css" />
<title>V I E W .....</title>
<script language="JavaScript">
function winClose()
{
window.close();
return false;
}
</script>
</head>
<body >
<center>
<br><br>
<table align="Center" width="1800">
<tr><td>
<%
//System.out.println(reque
//System.out.println(reque
name = request.getParameter("name
id = request.getParameter("id")
chkview = request.getParameter("chkv
lin = (String) session.getValue("slogin")
pwd = (String) session.getValue("spasswor
if (chkview.equals("1")) {
op = dv.showFile(name,lin,pwd,c
}
if (chkview.equals("2")) {
op = dv.showFile(name,lin,pwd,c
}
if (op instanceof Vector)
{
v = (Vector) op;
// out.println(" Printing line by line");
main = v.get(0).toString();
String main2 = main;
String sub1="";
boolean standardEOL =false;
int noflines = 0;
for (int j=0; j< main.length(); j++)
{
if(main.charAt(j) == '\n')
{
noflines = noflines + 1;
standardEOL = true;
}
}
//out.println("noflines=" + noflines);
for (int i=0; i<noflines; i++)
{
sub1 = main.substring(0,main.inde
out.println(sub1);
main = main.substring(sub1.length
%>
<br>
<%
} // for
if (!standardEOL){
if(main.length() > 0){
out.println(main);
}
}
} // if instance of vector
%>
</td>
</tr>
<tr><td>
<%
if (op instanceof String)
{
str = (String) op;
%>
<br>
<br>
<br>
<br>
<br>
<br>
<center><font>
<%
out.println( str);
}
%>
</font></center>
</td>
</tr>
<center><tr align="center"><td align="center"><input type=button value="CLOSE" onClick="return winClose()" ></td></tr></center>
</table>
</center>
</body>
</html>
Business Accounts
Answer for Membership
by: erikTsomikPosted on 2009-08-04 at 14:08:52ID: 25018173
what is error