1234567891011121314 |
- <%@ page contentType="text/html; charset=UTF-8" language="java"%>
- <%@ page
- import ="com.sysmodel.listmodel.xmlmodel.impl.FormListImpl,
- com.sysmodel.XFormFactory,
- com.sysmodel.listmodel.xmlmanager.xmlobjdll.ListModeldllable,
- com.sysmodel.listmodel.xmlmanager.xmlobjdll.ListModeldllImpl"
- %>
- <%
- String listid = request.getParameter("listid") == null ? "" : request.getParameter("listid");
- FormListImpl FormList=(FormListImpl)XFormFactory.getXFormModel().getFormList(listid);
- ListModeldllable ListModeldllable = new ListModeldllImpl();
- out.print(ListModeldllable.checkFormListConfig(FormList));
- %>
|