由于可以轻易获取源代码,个人认为它在使用非常古老的系统。再者说,对方的机器染病毒也是由于Windows平台的原因,和IBM有什么关系了。最后,我的Norton CE没有报警,你的IE版本是不是太低了?你应该骂一下M$的,我也没有看到500错误!<%
/**
 *      index.jsp
 *      created by airfox
 * last update 4/3/2001 by airfox
 */
%><%-- ******  clear session ****** --%>
<% 
   //清除会员信息
   if(session.getValue("MemberB") != null) {
   session.removeValue("MemberB");
}
   //清除订单信息
   if(session.getValue("RequestOrder") != null) {
   session.removeValue("RequestOrder");
   session.removeValue("OrderLineNums");
}
   //清除缺省交货地信息
   if(session.getValue("DefMemberAddr") != null) {
   session.removeValue("DefMemberAddr");
   }
   
 String[] strSessionName = session.getValueNames();
 
 if (strSessionName != null) {
  for (int i=0;i<strSessionName.length;i++) {
  if (!strSessionName[i].equals("MemberB")) {
  session.removeValue(strSessionName[i]);
  }
}
 }
 
%>
<%-- ****** html head ****** --%>
<%  String pageTitle = "首页"; %>
<%  boolean hasinit = false; %>
<%@ include file= "./common/header.jsp" %>
<p>
<center><span class="label" style="color:red">请使用演示用户进行登录,用户名:Trade 密码:casesoft (区分大小写)</span></center>
<hr size=0 style="color:#78acff"><br></p>
<script>
function go(){
  window.open("<%= webpath%>/ept/selectSafeConnection.jsp","_self");
}function broswer(){
  document.gobuy.submit();
}
</script>
<center>
<FORM name="gobuy" method="post" action="/ProductCatalogServlet">
<INPUT TYPE="hidden" NAME="Action" VALUE="1">
<INPUT TYPE="hidden" NAME="Locale" VALUE="zh_CN">
</FORM>
<table class="toolbarBg" width="50%" height="30%" border="0" cellspacing="0" cellpadding="1">
<td><table class="toolbarFg" width="100%" height="100%" border="0" cellspacing="0" cellpadding="3">
<td width="99%" align="center">
 欢迎使用开思软件网上订货系统<p><br><p>
 <input class="ibtn" type="button"  style="width:100;height:30" value="普通客户浏览" name="buttonguest" onClick="broswer();">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
 <input class="ibtn" type="button"  style="width:100;height:30" value="会员登录注册" name="buttonmember" onClick="go();">
 </td>
 </table>
</td>
</table>
<br>
</center>
 <%-- ****** html footer ****** --%>
<%@ include file= "./common/footer.jsp" %>