home *** CD-ROM | disk | FTP | other *** search
/ 66.142.0.142 / 66.142.0.142.tar / 66.142.0.142 / tblLPRsrch.aspx < prev    next >
Text File  |  2010-08-24  |  18KB  |  398 lines

  1. <%@ Page Language="VB" MasterPageFile="masterpage.master" AutoEventWireup="false" CodeFile="tblLPRsrch.aspx.vb" Inherits="tblLPRsrch" CodeFileBaseClass="AspNetMaker7_tfpssnet" %>
  2. <asp:Content ID="Content" ContentPlaceHolderID="Content" runat="server">
  3. <script type="text/javascript">
  4. <!--
  5. // Create page object
  6. var tblLPR_search = new ew_Page("tblLPR_search");
  7. // page properties
  8. tblLPR_search.PageID = "search"; // page ID
  9. var EW_PAGE_ID = tblLPR_search.PageID; // for backward compatibility
  10. // extend page with validate function for search
  11. tblLPR_search.ValidateSearch = function(fobj) {
  12.     if (!this.ValidateRequired)
  13.         return true; // ignore validation
  14.     var infix = "";
  15.     elm = fobj.elements["x" + infix + "_lprDate"];
  16.     if (elm && !ew_CheckUSDate(elm.value))
  17.         return ew_OnError(this, elm, "Incorrect date, format = mm/dd/yyyy - Date");
  18.     elm = fobj.elements["x" + infix + "_lprFixtureNumber"];
  19.     if (elm && !ew_CheckInteger(elm.value))
  20.         return ew_OnError(this, elm, "Incorrect integer - Fixture Number");
  21.     elm = fobj.elements["x" + infix + "_lprChannelNumber"];
  22.     if (elm && !ew_CheckInteger(elm.value))
  23.         return ew_OnError(this, elm, "Incorrect integer - Channel Number");
  24.     for (var i=0;i<fobj.elements.length;i++) {
  25.         var elem = fobj.elements[i];
  26.         if (elem.name.substring(0,2) == "s_" || elem.name.substring(0,3) == "sv_")
  27.             elem.value = "";
  28.     }
  29.     return true;
  30. }
  31. <% If EW_CLIENT_VALIDATE Then %>
  32. tblLPR_search.ValidateRequired = true; // uses JavaScript validation
  33. <% Else %>
  34. tblLPR_search.ValidateRequired = false; // no JavaScript validation
  35. <% End If %>
  36. // search highlight properties
  37. tblLPR_search.ShowHighlightText = "Show highlight"; 
  38. tblLPR_search.HideHighlightText = "Hide highlight";
  39. //-->
  40. </script>
  41. <link rel="stylesheet" type="text/css" media="all" href="calendar/calendar-win2k-1.css" title="win2k-1" />
  42. <script type="text/javascript" src="calendar/calendar.js"></script>
  43. <script type="text/javascript" src="calendar/lang/calendar-en.js"></script>
  44. <script type="text/javascript" src="calendar/calendar-setup.js"></script>
  45. <script language="JavaScript" type="text/javascript">
  46. <!--
  47. // Write your client script here, no need to add script tags.
  48. // To include another .js script, use:
  49. // ew_ClientScriptInclude("my_javascript.js"); 
  50. //-->
  51. </script>
  52. <p><span class="aspnetmaker">Search TABLE: Lighting Problem Reporting<br /><br />
  53. <a href="<%= tblLPR.ReturnUrl %>">Back to List</a></span></p>
  54. <% tblLPR_search.ShowMessage() %>
  55. <form name="ftblLPRsearch" id="ftblLPRsearch" method="post" onsubmit="this.action=location.pathname;return tblLPR_search.ValidateSearch(this);">
  56. <p />
  57. <input type="hidden" name="t" id="t" value="tblLPR" />
  58. <input type="hidden" name="a_search" id="a_search" value="S" />
  59. <table cellspacing="0" class="ewGrid"><tr><td class="ewGridContent">
  60. <div class="ewGridMiddlePanel">
  61. <table cellspacing="0" class="ewTable">
  62.     <tr<%= tblLPR.lprEmpID.RowAttributes %>>
  63.         <td class="ewTableHeader">Employee</td>
  64.         <td<%= tblLPR.lprEmpID.CellAttributes %>><span class="ewSearchOpr">=<input type="hidden" name="z_lprEmpID" id="z_lprEmpID" value="=" /></span></td>
  65.         <td<%= tblLPR.lprEmpID.CellAttributes %>>
  66.             <table cellspacing="0" class="ewItemTable"><tr>
  67.                 <td><span class="aspnetmaker">
  68. <% If Not Security.IsAdmin And Security.IsLoggedIn() Then ' Non system admin %>
  69. <div<%= tblLPR.lprEmpID.ViewAttributes %>><%= tblLPR.lprEmpID.EditValue %></div>
  70. <input type="hidden" name="x_lprEmpID" id="x_lprEmpID" value="<%= ew_HTMLEncode(tblLPR.lprEmpID.AdvancedSearch.SearchValue) %>" />
  71. <% Else %>
  72. <select id="x_lprEmpID" name="x_lprEmpID"<%= tblLPR.lprEmpID.EditAttributes %>>
  73. <%
  74. emptywrk = True
  75. If ew_IsArrayList(tblLPR.lprEmpID.EditValue) Then
  76.     arwrk = tblLPR.lprEmpID.EditValue
  77.     For rowcntwrk As Integer = 0 To arwrk.Count - 1
  78.         If ew_SameStr(arwrk(rowcntwrk)(0), tblLPR.lprEmpID.AdvancedSearch.SearchValue) Then
  79.             selwrk = " selected=""selected"""
  80.             emptywrk = False
  81.         Else
  82.             selwrk = ""
  83.         End If
  84. %>
  85. <option value="<%= ew_HtmlEncode(arwrk(rowcntwrk)(0)) %>"<%= selwrk %>>
  86. <%= arwrk(rowcntwrk)(1) %>
  87. </option>
  88. <%
  89.     Next
  90. End If
  91. %>
  92. </select>
  93. <% End If %>
  94. </span></td>
  95.             </tr></table>
  96.         </td>
  97.     </tr>
  98.     <tr<%= tblLPR.lprDate.RowAttributes %>>
  99.         <td class="ewTableHeader">Date</td>
  100.         <td<%= tblLPR.lprDate.CellAttributes %>><span class="ewSearchOpr">>=<input type="hidden" name="z_lprDate" id="z_lprDate" value=">=" /></span></td>
  101.         <td<%= tblLPR.lprDate.CellAttributes %>>
  102.             <table cellspacing="0" class="ewItemTable"><tr>
  103.                 <td><span class="aspnetmaker">
  104. <input type="text" name="x_lprDate" id="x_lprDate" value="<%= tblLPR.lprDate.EditValue %>"<%= tblLPR.lprDate.EditAttributes %> />
  105.  <img src="images/calendar.png" id="cal_x_lprDate" name="cal_x_lprDate" alt="Pick a date" style="cursor:pointer;cursor:hand;" />
  106. <script type="text/javascript">
  107. Calendar.setup({
  108.     inputField : "x_lprDate", // ID of the input field
  109.     ifFormat : "%m/%d/%Y", // the date format
  110.     button : "cal_x_lprDate" // ID of the button
  111. });
  112. </script>
  113. </span></td>
  114.                 <td><span class="ewSearchOpr" id="btw0_lprDate" name="btw0_lprDate"><label><input type="radio" name="v_lprDate" id="v_lprDate" value="AND"<% If tblLPR.lprDate.AdvancedSearch.SearchCondition <> "OR" Then Response.Write(" checked=""checked""") %> />and</label> <label><input type="radio" name="v_lprDate" id="v_lprDate" value="OR"<% If tblLPR.lprDate.AdvancedSearch.SearchCondition = "OR" Then Response.Write(" checked=""checked""") %> />or </label></span></td>
  115.                 <td><span class="ewSearchOpr" id="btw0_lprDate" name="btw0_lprDate" ><=<input type="hidden" name="w_lprDate" id="w_lprDate" value="<=" /></span></td>
  116.                 <td><span class="aspnetmaker">
  117. <input type="text" name="y_lprDate" id="y_lprDate" value="<%= tblLPR.lprDate.EditValue2 %>"<%= tblLPR.lprDate.EditAttributes %> />
  118.  <img src="images/calendar.png" id="cal_y_lprDate" name="cal_y_lprDate" alt="Pick a date" style="cursor:pointer;cursor:hand;" />
  119. <script type="text/javascript">
  120. Calendar.setup({
  121.     inputField : "y_lprDate", // ID of the input field
  122.     ifFormat : "%m/%d/%Y", // the date format
  123.     button : "cal_y_lprDate" // ID of the button
  124. });
  125. </script>
  126. </span></td>
  127.             </tr></table>
  128.         </td>
  129.     </tr>
  130.     <tr<%= tblLPR.lprLocationID.RowAttributes %>>
  131.         <td class="ewTableHeader">Location</td>
  132.         <td<%= tblLPR.lprLocationID.CellAttributes %>><span class="ewSearchOpr">=<input type="hidden" name="z_lprLocationID" id="z_lprLocationID" value="=" /></span></td>
  133.         <td<%= tblLPR.lprLocationID.CellAttributes %>>
  134.             <table cellspacing="0" class="ewItemTable"><tr>
  135.                 <td><span class="aspnetmaker">
  136. <select id="x_lprLocationID" name="x_lprLocationID"<%= tblLPR.lprLocationID.EditAttributes %>>
  137. <%
  138. emptywrk = True
  139. If ew_IsArrayList(tblLPR.lprLocationID.EditValue) Then
  140.     arwrk = tblLPR.lprLocationID.EditValue
  141.     For rowcntwrk As Integer = 0 To arwrk.Count - 1
  142.         If ew_SameStr(arwrk(rowcntwrk)(0), tblLPR.lprLocationID.AdvancedSearch.SearchValue) Then
  143.             selwrk = " selected=""selected"""
  144.             emptywrk = False
  145.         Else
  146.             selwrk = ""
  147.         End If
  148. %>
  149. <option value="<%= ew_HtmlEncode(arwrk(rowcntwrk)(0)) %>"<%= selwrk %>>
  150. <%= arwrk(rowcntwrk)(1) %>
  151. </option>
  152. <%
  153.     Next
  154. End If
  155. %>
  156. </select>
  157. </span></td>
  158.             </tr></table>
  159.         </td>
  160.     </tr>
  161.     <tr<%= tblLPR.lprFixtureLocationID.RowAttributes %>>
  162.         <td class="ewTableHeader">Fixture Location</td>
  163.         <td<%= tblLPR.lprFixtureLocationID.CellAttributes %>><span class="ewSearchOpr">=<input type="hidden" name="z_lprFixtureLocationID" id="z_lprFixtureLocationID" value="=" /></span></td>
  164.         <td<%= tblLPR.lprFixtureLocationID.CellAttributes %>>
  165.             <table cellspacing="0" class="ewItemTable"><tr>
  166.                 <td><span class="aspnetmaker">
  167. <select id="x_lprFixtureLocationID" name="x_lprFixtureLocationID"<%= tblLPR.lprFixtureLocationID.EditAttributes %>>
  168. <%
  169. emptywrk = True
  170. If ew_IsArrayList(tblLPR.lprFixtureLocationID.EditValue) Then
  171.     arwrk = tblLPR.lprFixtureLocationID.EditValue
  172.     For rowcntwrk As Integer = 0 To arwrk.Count - 1
  173.         If ew_SameStr(arwrk(rowcntwrk)(0), tblLPR.lprFixtureLocationID.AdvancedSearch.SearchValue) Then
  174.             selwrk = " selected=""selected"""
  175.             emptywrk = False
  176.         Else
  177.             selwrk = ""
  178.         End If
  179. %>
  180. <option value="<%= ew_HtmlEncode(arwrk(rowcntwrk)(0)) %>"<%= selwrk %>>
  181. <%= arwrk(rowcntwrk)(1) %>
  182. </option>
  183. <%
  184.     Next
  185. End If
  186. %>
  187. </select>
  188. </span></td>
  189.             </tr></table>
  190.         </td>
  191.     </tr>
  192.     <tr<%= tblLPR.lprFixtureTypeID.RowAttributes %>>
  193.         <td class="ewTableHeader">Fixture Type</td>
  194.         <td<%= tblLPR.lprFixtureTypeID.CellAttributes %>><span class="ewSearchOpr">=<input type="hidden" name="z_lprFixtureTypeID" id="z_lprFixtureTypeID" value="=" /></span></td>
  195.         <td<%= tblLPR.lprFixtureTypeID.CellAttributes %>>
  196.             <table cellspacing="0" class="ewItemTable"><tr>
  197.                 <td><span class="aspnetmaker">
  198. <select id="x_lprFixtureTypeID" name="x_lprFixtureTypeID"<%= tblLPR.lprFixtureTypeID.EditAttributes %>>
  199. <%
  200. emptywrk = True
  201. If ew_IsArrayList(tblLPR.lprFixtureTypeID.EditValue) Then
  202.     arwrk = tblLPR.lprFixtureTypeID.EditValue
  203.     For rowcntwrk As Integer = 0 To arwrk.Count - 1
  204.         If ew_SameStr(arwrk(rowcntwrk)(0), tblLPR.lprFixtureTypeID.AdvancedSearch.SearchValue) Then
  205.             selwrk = " selected=""selected"""
  206.             emptywrk = False
  207.         Else
  208.             selwrk = ""
  209.         End If
  210. %>
  211. <option value="<%= ew_HtmlEncode(arwrk(rowcntwrk)(0)) %>"<%= selwrk %>>
  212. <%= arwrk(rowcntwrk)(1) %>
  213. </option>
  214. <%
  215.     Next
  216. End If
  217. %>
  218. </select>
  219. </span></td>
  220.             </tr></table>
  221.         </td>
  222.     </tr>
  223.     <tr<%= tblLPR.lprFixtureNumber.RowAttributes %>>
  224.         <td class="ewTableHeader">Fixture Number</td>
  225.         <td<%= tblLPR.lprFixtureNumber.CellAttributes %>><span class="ewSearchOpr">contains<input type="hidden" name="z_lprFixtureNumber" id="z_lprFixtureNumber" value="LIKE" /></span></td>
  226.         <td<%= tblLPR.lprFixtureNumber.CellAttributes %>>
  227.             <table cellspacing="0" class="ewItemTable"><tr>
  228.                 <td><span class="aspnetmaker">
  229. <input type="text" name="x_lprFixtureNumber" id="x_lprFixtureNumber" size="30" maxlength="255" value="<%= tblLPR.lprFixtureNumber.EditValue %>"<%= tblLPR.lprFixtureNumber.EditAttributes %> />
  230. </span></td>
  231.             </tr></table>
  232.         </td>
  233.     </tr>
  234.     <tr<%= tblLPR.lprChannelNumber.RowAttributes %>>
  235.         <td class="ewTableHeader">Channel Number</td>
  236.         <td<%= tblLPR.lprChannelNumber.CellAttributes %>><span class="ewSearchOpr">=<input type="hidden" name="z_lprChannelNumber" id="z_lprChannelNumber" value="=" /></span></td>
  237.         <td<%= tblLPR.lprChannelNumber.CellAttributes %>>
  238.             <table cellspacing="0" class="ewItemTable"><tr>
  239.                 <td><span class="aspnetmaker">
  240. <input type="text" name="x_lprChannelNumber" id="x_lprChannelNumber" size="30" value="<%= tblLPR.lprChannelNumber.EditValue %>"<%= tblLPR.lprChannelNumber.EditAttributes %> />
  241. </span></td>
  242.             </tr></table>
  243.         </td>
  244.     </tr>
  245.     <tr<%= tblLPR.lprPriority.RowAttributes %>>
  246.         <td class="ewTableHeader">Priority</td>
  247.         <td<%= tblLPR.lprPriority.CellAttributes %>><span class="ewSearchOpr">=<input type="hidden" name="z_lprPriority" id="z_lprPriority" value="=" /></span></td>
  248.         <td<%= tblLPR.lprPriority.CellAttributes %>>
  249.             <table cellspacing="0" class="ewItemTable"><tr>
  250.                 <td><span class="aspnetmaker">
  251. <select id="x_lprPriority" name="x_lprPriority"<%= tblLPR.lprPriority.EditAttributes %>>
  252. <%
  253. emptywrk = True
  254. If ew_IsArrayList(tblLPR.lprPriority.EditValue) Then
  255.     arwrk = tblLPR.lprPriority.EditValue
  256.     For rowcntwrk As Integer = 0 To arwrk.Count - 1
  257.         If ew_SameStr(arwrk(rowcntwrk)(0), tblLPR.lprPriority.AdvancedSearch.SearchValue) Then
  258.             selwrk = " selected=""selected"""
  259.             emptywrk = False
  260.         Else
  261.             selwrk = ""
  262.         End If
  263. %>
  264. <option value="<%= ew_HtmlEncode(arwrk(rowcntwrk)(0)) %>"<%= selwrk %>>
  265. <%= arwrk(rowcntwrk)(1) %>
  266. </option>
  267. <%
  268.     Next
  269. End If
  270. %>
  271. </select>
  272. </span></td>
  273.             </tr></table>
  274.         </td>
  275.     </tr>
  276.     <tr<%= tblLPR.lprShortDesc.RowAttributes %>>
  277.         <td class="ewTableHeader">Short Desc</td>
  278.         <td<%= tblLPR.lprShortDesc.CellAttributes %>><span class="ewSearchOpr">contains<input type="hidden" name="z_lprShortDesc" id="z_lprShortDesc" value="LIKE" /></span></td>
  279.         <td<%= tblLPR.lprShortDesc.CellAttributes %>>
  280.             <table cellspacing="0" class="ewItemTable"><tr>
  281.                 <td><span class="aspnetmaker">
  282. <input type="text" name="x_lprShortDesc" id="x_lprShortDesc" size="30" maxlength="255" value="<%= tblLPR.lprShortDesc.EditValue %>"<%= tblLPR.lprShortDesc.EditAttributes %> />
  283. </span></td>
  284.             </tr></table>
  285.         </td>
  286.     </tr>
  287.     <tr<%= tblLPR.lprSTID.RowAttributes %>>
  288.         <td class="ewTableHeader">Status</td>
  289.         <td<%= tblLPR.lprSTID.CellAttributes %>><span class="ewSearchOpr">=<input type="hidden" name="z_lprSTID" id="z_lprSTID" value="=" /></span></td>
  290.         <td<%= tblLPR.lprSTID.CellAttributes %>>
  291.             <table cellspacing="0" class="ewItemTable"><tr>
  292.                 <td><span class="aspnetmaker">
  293. <select id="x_lprSTID" name="x_lprSTID"<%= tblLPR.lprSTID.EditAttributes %>>
  294. <%
  295. emptywrk = True
  296. If ew_IsArrayList(tblLPR.lprSTID.EditValue) Then
  297.     arwrk = tblLPR.lprSTID.EditValue
  298.     For rowcntwrk As Integer = 0 To arwrk.Count - 1
  299.         If ew_SameStr(arwrk(rowcntwrk)(0), tblLPR.lprSTID.AdvancedSearch.SearchValue) Then
  300.             selwrk = " selected=""selected"""
  301.             emptywrk = False
  302.         Else
  303.             selwrk = ""
  304.         End If
  305. %>
  306. <option value="<%= ew_HtmlEncode(arwrk(rowcntwrk)(0)) %>"<%= selwrk %>>
  307. <%= arwrk(rowcntwrk)(1) %>
  308. </option>
  309. <%
  310.     Next
  311. End If
  312. %>
  313. </select>
  314. </span></td>
  315.             </tr></table>
  316.         </td>
  317.     </tr>
  318.     <tr<%= tblLPR.lprSTChangedBy.RowAttributes %>>
  319.         <td class="ewTableHeader">Status Changed By</td>
  320.         <td<%= tblLPR.lprSTChangedBy.CellAttributes %>><span class="ewSearchOpr">contains<input type="hidden" name="z_lprSTChangedBy" id="z_lprSTChangedBy" value="LIKE" /></span></td>
  321.         <td<%= tblLPR.lprSTChangedBy.CellAttributes %>>
  322.             <table cellspacing="0" class="ewItemTable"><tr>
  323.                 <td><span class="aspnetmaker">
  324. <input type="text" name="x_lprSTChangedBy" id="x_lprSTChangedBy" size="30" maxlength="255" value="<%= tblLPR.lprSTChangedBy.EditValue %>"<%= tblLPR.lprSTChangedBy.EditAttributes %> />
  325. </span></td>
  326.             </tr></table>
  327.         </td>
  328.     </tr>
  329.     <tr<%= tblLPR.lprDesc.RowAttributes %>>
  330.         <td class="ewTableHeader">Description</td>
  331.         <td<%= tblLPR.lprDesc.CellAttributes %>><span class="ewSearchOpr">contains<input type="hidden" name="z_lprDesc" id="z_lprDesc" value="LIKE" /></span></td>
  332.         <td<%= tblLPR.lprDesc.CellAttributes %>>
  333.             <table cellspacing="0" class="ewItemTable"><tr>
  334.                 <td><span class="aspnetmaker">
  335. <textarea name="x_lprDesc" id="x_lprDesc" cols="35" rows="4"<%= tblLPR.lprDesc.EditAttributes %>><%= tblLPR.lprDesc.EditValue %></textarea>
  336. </span></td>
  337.             </tr></table>
  338.         </td>
  339.     </tr>
  340.     <tr<%= tblLPR.lprCreatedBy.RowAttributes %>>
  341.         <td class="ewTableHeader">Created By</td>
  342.         <td<%= tblLPR.lprCreatedBy.CellAttributes %>><span class="ewSearchOpr">contains<input type="hidden" name="z_lprCreatedBy" id="z_lprCreatedBy" value="LIKE" /></span></td>
  343.         <td<%= tblLPR.lprCreatedBy.CellAttributes %>>
  344.             <table cellspacing="0" class="ewItemTable"><tr>
  345.                 <td><span class="aspnetmaker">
  346. <input type="text" name="x_lprCreatedBy" id="x_lprCreatedBy" size="30" maxlength="255" value="<%= tblLPR.lprCreatedBy.EditValue %>"<%= tblLPR.lprCreatedBy.EditAttributes %> />
  347. </span></td>
  348.             </tr></table>
  349.         </td>
  350.     </tr>
  351.     <tr<%= tblLPR.lprCreatedOn.RowAttributes %>>
  352.         <td class="ewTableHeader">Created On</td>
  353.         <td<%= tblLPR.lprCreatedOn.CellAttributes %>><span class="ewSearchOpr">=<input type="hidden" name="z_lprCreatedOn" id="z_lprCreatedOn" value="=" /></span></td>
  354.         <td<%= tblLPR.lprCreatedOn.CellAttributes %>>
  355.             <table cellspacing="0" class="ewItemTable"><tr>
  356.                 <td><span class="aspnetmaker">
  357. <input type="text" name="x_lprCreatedOn" id="x_lprCreatedOn" value="<%= tblLPR.lprCreatedOn.EditValue %>"<%= tblLPR.lprCreatedOn.EditAttributes %> />
  358. </span></td>
  359.             </tr></table>
  360.         </td>
  361.     </tr>
  362.     <tr<%= tblLPR.lprModifiedBy.RowAttributes %>>
  363.         <td class="ewTableHeader">Modified By</td>
  364.         <td<%= tblLPR.lprModifiedBy.CellAttributes %>><span class="ewSearchOpr">contains<input type="hidden" name="z_lprModifiedBy" id="z_lprModifiedBy" value="LIKE" /></span></td>
  365.         <td<%= tblLPR.lprModifiedBy.CellAttributes %>>
  366.             <table cellspacing="0" class="ewItemTable"><tr>
  367.                 <td><span class="aspnetmaker">
  368. <input type="text" name="x_lprModifiedBy" id="x_lprModifiedBy" size="30" maxlength="255" value="<%= tblLPR.lprModifiedBy.EditValue %>"<%= tblLPR.lprModifiedBy.EditAttributes %> />
  369. </span></td>
  370.             </tr></table>
  371.         </td>
  372.     </tr>
  373.     <tr<%= tblLPR.lprModifiedOn.RowAttributes %>>
  374.         <td class="ewTableHeader">Modified On</td>
  375.         <td<%= tblLPR.lprModifiedOn.CellAttributes %>><span class="ewSearchOpr">=<input type="hidden" name="z_lprModifiedOn" id="z_lprModifiedOn" value="=" /></span></td>
  376.         <td<%= tblLPR.lprModifiedOn.CellAttributes %>>
  377.             <table cellspacing="0" class="ewItemTable"><tr>
  378.                 <td><span class="aspnetmaker">
  379. <input type="text" name="x_lprModifiedOn" id="x_lprModifiedOn" value="<%= tblLPR.lprModifiedOn.EditValue %>"<%= tblLPR.lprModifiedOn.EditAttributes %> />
  380. </span></td>
  381.             </tr></table>
  382.         </td>
  383.     </tr>
  384. </table>
  385. </div>
  386. </td></tr></table>
  387. <p />
  388. <input type="submit" name="Action" id="Action" value="  Search  " />
  389. <input type="button" name="Reset" id="Reset" value="   Reset   " onclick="ew_ClearForm(this.form);" />
  390. </form>
  391. <script language="JavaScript" type="text/javascript">
  392. <!--
  393. // Write your table-specific startup script here
  394. // document.write("page loaded");
  395. //-->
  396. </script>
  397. </asp:Content>
  398.