home *** CD-ROM | disk | FTP | other *** search
- <%LoginCheck%>
-
- <html>
-
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
- <title><%ListPageTitle%></title>
- </head>
-
- <body bgcolor="#FFFFFF">
-
- <script Language="JavaScript"><!--
- var sAction = "form";
- var NoRecordsChecked = true;
-
- function OnClickBtn( el )
- {
- if( el.name != "form_list" )
- {
- if( el.value == "<%AddNewValue%>" )
- {
- document.form_list.target = "detail";
- document.form_list.action = "<%EditorSubmitASPPage%>";
- sAction = "btn"
- }
- else if( el.value == "<%DelSelValue%>" )
- {
- for (i=0;i<document.form_list.elements.length;i++)
- {
- if (document.form_list.elements[i].checked)
- {
- NoRecordsChecked = false;
- }
- }
-
- if (NoRecordsChecked)
- {
- sAction = "form";
- alert("<%NoSelRecordsErrorString%>");
- return;
- }
-
- document.form_list.target = "detail";
- document.form_list.action = "<%DeleteASPPage%>";
- sAction = "btn"
- }
- }
- else
- {
- if( sAction != "btn" )
- {
- document.form_list.target = "_self";
- document.form_list.action = "<%ListASPPage%>";
- }
-
- sAction = "form";
- }
- }
- -->
- </script>
-
-
- <table width="100%" align=left>
- <tr>
- <td width="50%">
- <b><font size=+3 color="#000080"> Database Editor - <i><%DisplayedTableName%></i></font></b>
- </td>
- <td width="50%" align=right>
- <table>
- <tr>
- <td>
- <%DBEditorNavBar%>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
-
- <br clear=all>
-
- <form name="form_list" target="_self" action="<%ListASPPage%>" method="POST" OnClick="OnClickBtn(this)">
- <table>
- <td>
- <p><input name="btnAction" type="submit" value="<%AddNewValue%>" OnClick="OnClickBtn(this)"></p>
- </td>
- <td>
- <p><input name="btnAction" type="submit" value="<%DelSelValue%>" OnClick="OnClickBtn(this)"></p>
- </td>
- </table>
-
- <hr>
-
- <table border="0">
- <thead>
- <tr>
-
- <td></td>
-
- <%ListColumnHeaders%>
-
- </tr>
- </thead>
-
- <tbody>
-
- <!--webbot bot="DatabaseRegionStart" s-columnnames="<%ListColumnNames%>" s-columntypes="<%ListColumnTypes%>" s-dataconnection="<%ConnectionName%>" b-tableformat="TRUE" b-menuformat="FALSE" s-menuchoice s-menuvalue b-tableborder="FALSE" b-tableexpand="FALSE" b-tableheader="TRUE" b-listlabels="TRUE" b-listseparator="TRUE" i-ListFormat="0" b-makeform="TRUE" s-RecordSource="<%RecordSource%>" s-displaycolumns="<%DisplayColumns%>" s-criteria s-order s-sql="<%ListSQLQuery%>" b-procedure="FALSE" clientside SuggestedExt="asp" s-DefaultFields s-NoRecordsFound="No records returned." i-MaxRecords="256" i-GroupSize="5" u-dblib="<%IncPath%>_fpclass/fpdblib.inc" u-dbrgn1="<%IncPath%>_fpclass/fpdbrgn1.inc" u-dbrgn2="<%IncPath%>_fpclass/fpdbrgn2.inc" Tag="TBODY" -->
-
- <tr>
-
- <td><input type="checkbox" name="<%KeyFieldURL%>" value="ON"></td>
-
- <%ListResultColumn%>
-
- </tr>
-
- <!--webbot bot="DatabaseRegionEnd" b-tableformat="TRUE" b-menuformat="FALSE" u-dbrgn2="<%IncPath%>_fpclass/fpdbrgn2.inc" i-groupsize="5" clientside Tag="TBODY" -->
-
- </tbody>
- </table>
-
- </form>
-
- </body>
-
- </html>