17 lines
876 B
Plaintext
17 lines
876 B
Plaintext
<%@ page contentType="text/html; charset=GBK"%>
|
|
<%@ include file="/Frame/resources/include/include_begin_info.jspf"%>
|
|
<%@page import="jbo.awe.USER_INFO"%><%
|
|
BizObjectManager userInfo = JBOFactory.getBizObjectManager(USER_INFO.CLASS_NAME);
|
|
BizObjectQuery query = userInfo.createQuery("select * from o where UserID= :UserID");
|
|
query.setParameter("UserID",CurUser.getUserID());
|
|
BizObject bo = query.getSingleResult(false);
|
|
String email = bo.getAttribute("email").getString();
|
|
String companytel = bo.getAttribute("companytel").getString();
|
|
String mobiletel = bo.getAttribute("mobiletel").getString();
|
|
if(email==null) email="";
|
|
if(companytel==null) companytel="";
|
|
if(mobiletel==null) mobiletel="";
|
|
out.print("<span>"+email+","+companytel+","+mobiletel+"</span>");
|
|
%><script type="text/javascript">
|
|
</script>
|
|
<%@ include file="/Frame/resources/include/include_end.jspf"%> |