11 lines
530 B
Plaintext
11 lines
530 B
Plaintext
<%@ page import="com.pms.common.utils.*"%>
|
|
<%
|
|
String authGroupObjid = CommonUtils.checkNull(request.getAttribute("authGroupObjid"));
|
|
System.out.println("authGroupObjid:"+authGroupObjid);
|
|
%>
|
|
<frameset cols="46%,8%,46%" border="0" noresize>
|
|
<frame src="/admin/authAddPopUpLeft.do?authGroupObjid=<%=authGroupObjid%>" name="authAddPopUpLeft">
|
|
<frame src="/admin/authAddPopUpCenter.do" name="authAddPopUpCenter">
|
|
<frame src="/admin/authAddPopUpRight.do?authGroupObjid=<%=authGroupObjid%>" name="authAddPopUpRight">
|
|
</frameset>
|