You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

138 lines
6.7 KiB

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Manage.aspx.cs" Inherits="Swift.web.GeneralSetting.GeneralData.Manage" %>
  2. <%@ Import Namespace="Swift.web.Library" %>
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5. <head id="Head1" runat="server">
  6. <meta charset="utf-8" />
  7. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  8. <meta name="viewport" content="width=device-width, initial-scale=1" />
  9. <meta name="description" content="" />
  10. <meta name="author" content="" />
  11. <!-- Bootstrap Core CSS -->
  12. <link href="../../../Bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
  13. <!-- MetisMenu CSS -->
  14. <link href="../../../Bootstrap/css/metisMenu.min.css" rel="stylesheet" type="text/css" />
  15. <!-- timeline CSS -->
  16. <link href="../../../Bootstrap/css/timeline.css" rel="stylesheet" type="text/css" />
  17. <!-- Custom CSS -->
  18. <link href="../../../Bootstrap/css/style.css" rel="stylesheet" type="text/css" />
  19. <base id="Base1" target="_self" runat="server" />
  20. <link href="../../../css/style1.css" rel="stylesheet" type="text/css" />
  21. <script src="../../../js/functions.js" type="text/javascript"> </script>
  22. <script language="javascript" type="text/javascript">
  23. function goBack() {
  24. window.history.back();
  25. }
  26. function CheckRequired() {
  27. var RequiredField = "code,description,";
  28. if (ValidRequiredField(RequiredField) == false) {
  29. return false;
  30. }
  31. else {
  32. if (confirm("Are you sure to save a transaction?")) {
  33. return true;
  34. }
  35. }
  36. }
  37. </script>
  38. </head>
  39. <body>
  40. <form id="form1" runat="server" onsubmit="return CheckRequired();">
  41. <div id="main-page-wrapper">
  42. <div class="breadCrumb">
  43. Application Log » General Data Settings » List »
  44. <asp:Label ID="labelHead" runat="server" />
  45. » Manage
  46. </div>
  47. <div class="col-lg-12">
  48. <div class="panel panel-default">
  49. <div class="panel-heading">
  50. <asp:Label ID="header" runat="server" />
  51. </div>
  52. <div class="panel-body">
  53. <div class="row">
  54. <div class="col-md-2">
  55. <label>
  56. Code:<span class="errormsg">*</span></label>
  57. </div>
  58. <div class="col-md-6">
  59. <div class="form-group">
  60. <asp:TextBox ID="code" runat="server" Width="100%" CssClass="form-control" />
  61. </div>
  62. </div>
  63. </div>
  64. <div class="row">
  65. <div class="col-md-2">
  66. <div class="form-group">
  67. <label>
  68. Description:<span class="errormsg">*</span></label>
  69. </div>
  70. </div>
  71. <div class="col-md-6">
  72. <div class="form-group">
  73. <asp:TextBox ID="description" runat="server" Width="100%" CssClass="form-control" />
  74. </div>
  75. </div>
  76. </div>
  77. <div class="row">
  78. <div class="col-md-2">
  79. <label>
  80. <asp:Label ID="createdByLabel" runat="server" Text="Created By:" Visible="false" /></label>
  81. </div>
  82. <div class="col-md-6">
  83. <div class="form-group">
  84. <asp:Label ID="createdBy" runat="server" Visible="false" />
  85. </div>
  86. </div>
  87. </div>
  88. <div class="row">
  89. <div class="col-md-2">
  90. <label>
  91. <asp:Label ID="createdDateLabel" Text="Created Date:" runat="server" Visible="false" /></label>
  92. </div>
  93. <div class="col-md-6">
  94. <div class="form-group">
  95. <asp:Label ID="createdDate" runat="server" Visible="false" />
  96. </div>
  97. </div>
  98. </div>
  99. <div class="row">
  100. <div class="col-md-2">
  101. <label>
  102. <asp:Label ID="modifiedByLabel" Text="Modified By:" runat="server" Visible="false" /></label>
  103. </div>
  104. <div class="col-md-6">
  105. <div class="form-group">
  106. <asp:Label ID="modifiedBy" runat="server" Visible="false" />
  107. </div>
  108. </div>
  109. </div>
  110. <div class="row">
  111. <div class="col-md-2">
  112. <label>
  113. <asp:Label ID="modifiedDateLabel" Text="Modified Date:" runat="server" Visible="false" /></label>
  114. </div>
  115. <div class="col-md-6">
  116. <div class="form-group">
  117. <asp:Label ID="modifiedDate" runat="server" Visible="false" />
  118. </div>
  119. </div>
  120. </div>
  121. <div class="row">
  122. <div class="col-md-12">
  123. <div class="form-group">
  124. <asp:Button ID="btnSubmit" runat="server" Text="Save" CssClass="btn btn-primary m-t-25"
  125. OnClick="btnSumit_Click" />
  126. <button class="btn btn-primary m-t-25" onclick="goBack()" type="submit">
  127. Back</button>
  128. </div>
  129. </div>
  130. </div>
  131. </div>
  132. </div>
  133. </div>
  134. </div>
  135. <asp:HiddenField ID="idField" runat="server" />
  136. </form>
  137. </body>
  138. </html>