%@ page contentType="text/html; charset=GBK"%><%@
include file="/IncludeBegin.jsp"%><%
/*
Content: 数据对象列表
*/
String PG_TITLE = "数据对象列表"; // 浏览器窗口标题
PG_TITLE
//获得组件参数 :代码表编号、编辑权限
String sDoNo = CurPage.getParameter("DoNo");
String sEditRight = CurPage.getParameter("EditRight");
if (sDoNo == null) sDoNo = "";
if (sEditRight == null) sEditRight = "";
ASDataObject doTemp = new ASDataObject("DOLibraryList",Sqlca);
doTemp.setColumnAttribute("DoNo","IsFilter","1");
if(!sDoNo.equals("")){
doTemp.WhereClause += " and DoNo = '"+sDoNo+"' ";
}
ASDataWindow dwTemp = new ASDataWindow(CurPage ,doTemp,Sqlca);
dwTemp.Style="1"; //设置DW风格 1:Grid 2:Freeform
dwTemp.ReadOnly = "1"; //设置是否只读 1:只读 0:可写
dwTemp.setPageSize(20);
//生成HTMLDataWindow
Vector vTemp = dwTemp.genHTMLDataWindow(sDoNo);
for(int i=0;i<%@include file="/Resources/CodeParts/List05.jsp"%>
<%@ include file="/IncludeEnd.jsp"%>