真实的business.jsp的内容是:
document.title = X3X.DisplayName;
X3X.ServerURL = "<%= url%>"
X3X.ShowSplash();
X3X.UpdateVersion();
X3X.Init();
X3X.CloseSplash();
X3X.Run("", "", "", "");
document.body.onbeforeunload=BeforeClose;
document.title = X3X.DisplayName;
但是网页business.jsp源代码显示:
document.title = X3X.DisplayName;
X3X.ServerURL = "http://10.124.21.69:8081/x3/";
// X3X.ShowSplash();
X3X.UpdateVersion();
X3X.Init();
// X3X.CloseSplash();
X3X.Logon("null","null");
X3X.Run("Biz:\\SYSTEM\\INIT.FUNC", "", "", "");
document.body.onbeforeunload=BeforeClose;
document.title = X3X.DisplayName; |