30 lines
675 B
Plaintext
30 lines
675 B
Plaintext
<%@language = "javascript" %>
|
|
<% /*
|
|
$Revision$
|
|
$Id$
|
|
*/ %>
|
|
|
|
<%
|
|
DOCTYPE_Disable = true;
|
|
%>
|
|
|
|
<!-- #include file="../Shared/common.inc" -->
|
|
<!-- #include file="../Shared/selector.inc" -->
|
|
|
|
<%
|
|
// Build a building list
|
|
var controle_type = getFParamInt("controle_type", -1); // Controle type.
|
|
|
|
var sql = "SELECT ins_controlemode_key"
|
|
+ " , ins_controlemode_oms"
|
|
+ " FROM ins_controlemode"
|
|
+ " WHERE ins_srtcontrole_type = " + controle_type
|
|
+ " ORDER BY 2";
|
|
|
|
FCLTselector("controlemode",
|
|
sql,
|
|
{ initKey: -1,
|
|
emptyOption: ""
|
|
});
|
|
%><% ASPPAGE_END(); %>
|