home *** CD-ROM | disk | FTP | other *** search
/ 66.142.0.142 / 66.142.0.142.tar / 66.142.0.142 / ltgFixtureTypeview.aspx < prev    next >
Text File  |  2014-01-25  |  3KB  |  78 lines

  1. <%@ Page Language="VB" MasterPageFile="masterpage.master" AutoEventWireup="false" CodeFile="ltgFixtureTypeview.aspx.vb" Inherits="ltgFixtureTypeview" CodeFileBaseClass="AspNetMaker7_tfpssnet" %>
  2. <asp:Content ID="Content" ContentPlaceHolderID="Content" runat="server">
  3. <% If ltgFixtureType.Export = "" Then %>
  4. <script type="text/javascript">
  5. <!--
  6. // Create page object
  7. var ltgFixtureType_view = new ew_Page("ltgFixtureType_view");
  8. // page properties
  9. ltgFixtureType_view.PageID = "view"; // page ID
  10. var EW_PAGE_ID = ltgFixtureType_view.PageID; // for backward compatibility
  11. <% If EW_CLIENT_VALIDATE Then %>
  12. ltgFixtureType_view.ValidateRequired = true; // uses JavaScript validation
  13. <% Else %>
  14. ltgFixtureType_view.ValidateRequired = false; // no JavaScript validation
  15. <% End If %>
  16. //-->
  17. </script>
  18. <script language="JavaScript" type="text/javascript">
  19. <!--
  20. // Write your client script here, no need to add script tags.
  21. // To include another .js script, use:
  22. // ew_ClientScriptInclude("my_javascript.js"); 
  23. //-->
  24. </script>
  25. <% End If %>
  26. <p><span class="aspnetmaker">View TABLE: ltg Fixture Type
  27. <br /><br />
  28. <% If ltgFixtureType.Export = "" Then %>
  29. <a href="ltgFixtureTypelist.aspx">Back to List</a> 
  30. <% If Security.CanAdd Then %>
  31. <a href="<%= ltgFixtureType.AddUrl %>">Add</a> 
  32. <% End If %>
  33. <% If Security.CanEdit Then %>
  34. <a href="<%= ltgFixtureType.EditUrl %>">Edit</a> 
  35. <% End If %>
  36. <% If Security.CanDelete Then %>
  37. <a href="<%= ltgFixtureType.DeleteUrl %>">Delete</a> 
  38. <% End If %>
  39. <% End If %>
  40. </span></p>
  41. <% ltgFixtureType_view.ShowMessage() %>
  42. <p />
  43. <table cellspacing="0" class="ewGrid"><tr><td class="ewGridContent">
  44. <div class="ewGridMiddlePanel">
  45. <table cellspacing="0" class="ewTable">
  46. <% If ltgFixtureType.ftyDescription.Visible Then ' ftyDescription %>
  47.     <tr<%= ltgFixtureType.ftyDescription.RowAttributes %>>
  48.         <td class="ewTableHeader">Description</td>
  49.         <td<%= ltgFixtureType.ftyDescription.CellAttributes %>>
  50. <div<%= ltgFixtureType.ftyDescription.ViewAttributes %>><%= ltgFixtureType.ftyDescription.ViewValue %></div>
  51. </td>
  52.     </tr>
  53. <% End If %>
  54. <% If ltgFixtureType.ftyIsActive.Visible Then ' ftyIsActive %>
  55.     <tr<%= ltgFixtureType.ftyIsActive.RowAttributes %>>
  56.         <td class="ewTableHeader">Is Active</td>
  57.         <td<%= ltgFixtureType.ftyIsActive.CellAttributes %>>
  58. <% If Convert.ToString(ltgFixtureType.ftyIsActive.CurrentValue) = "1" Then %>
  59. <input type="checkbox" value="<%= ltgFixtureType.ftyIsActive.ViewValue %>" checked onclick="this.form.reset();" disabled="disabled" />
  60. <% Else %>
  61. <input type="checkbox" value="<%= ltgFixtureType.ftyIsActive.ViewValue %>" onclick="this.form.reset();" disabled="disabled" />
  62. <% End If %></td>
  63.     </tr>
  64. <% End If %>
  65. </table>
  66. </div>
  67. </td></tr></table>
  68. <p />
  69. <% If ltgFixtureType.Export = "" Then %>
  70. <script language="JavaScript" type="text/javascript">
  71. <!--
  72. // Write your table-specific startup script here
  73. // document.write("page loaded");
  74. //-->
  75. </script>
  76. <% End If %>
  77. </asp:Content>
  78.