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.

104 lines
6.4 KiB

  1. <%@ Page Language="C#" ValidateRequest="false" AutoEventWireup="true" CodeBehind="Manage.aspx.cs" Inherits="Swift.web.SwiftSystem.GeneralSetting.MessageSetting.TxnMessageSetting.Manage" %>
  2. <%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="cc1" %>
  3. <!DOCTYPE html>
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5. <head id="Head1" runat="server">
  6. <link href="../../../../css/style.css" rel="stylesheet" type="text/css" />
  7. <link href="../../../../Css/swift_component.css" rel="stylesheet" type="text/css" />
  8. <script src="../../../../js/functions.js" type="text/javascript"> </script>
  9. <script src="../scripts/wysiwyg.js" type="text/javascript"> </script>
  10. <script src="../scripts/wysiwyg-settings.js" type="text/javascript"> </script>
  11. <script src="../../../../js/functions.js" type="text/javascript"> </script>
  12. <script type="text/javascript">
  13. WYSIWYG.attach("<%=country.ClientID%>", full);
  14. WYSIWYG.attach("<%=service.ClientID%>", full);
  15. WYSIWYG.attach("<%=codeDesc.ClientID%>", full);
  16. WYSIWYG.attach("<%=paymentMethodDesc.ClientID%>", full);
  17. </script>
  18. </head>
  19. <body>
  20. <form id="form1" runat="server">
  21. <asp:ScriptManager ID="sm" runat="server"></asp:ScriptManager>
  22. <table width="90%" border="0" align="left" cellpadding="0" cellspacing="0">
  23. <tr>
  24. <td width="100%">
  25. <asp:Panel ID="pnl1" runat="server">
  26. <table width="100%">
  27. <tr>
  28. <td height="26" class="bredCrom"> <div > Application Setting » Transaction Message Setting » Manage </div> </td>
  29. </tr>
  30. <tr>
  31. <td height="10" width="100%">
  32. <div class="tabs" >
  33. <ul>
  34. <li> <a href="List.aspx">List</a></li>
  35. <li> <a href="Javascript:void(0)" class="selected">Manage</a></li>
  36. </ul>
  37. </div>
  38. </td>
  39. </tr>
  40. </table>
  41. </asp:Panel>
  42. </td>
  43. </tr>
  44. <tr>
  45. <td height="524" valign="top" >
  46. <table border="0" cellspacing="0" cellpadding="0" class="formTable" align="left" >
  47. <tr>
  48. <th class="frmTitle" colspan="2">Transaction Message Setting</th>
  49. </tr>
  50. <tr>
  51. <td class="frmLable" nowrap="nowrap" valign="top">Country</td>
  52. <td><asp:TextBox ID="country" CssClass="unicodeFont" runat="server" TextMode="MultiLine" Width="600px" Height="50px"></asp:TextBox></td>
  53. </tr>
  54. <tr>
  55. <td class="frmLable" nowrap="nowrap" valign="top">Service</td>
  56. <td><asp:TextBox ID="service" CssClass="unicodeFont" runat="server" TextMode="MultiLine" Width="600px" Height="50px"></asp:TextBox></td>
  57. </tr>
  58. <tr>
  59. <td class="frmLable" nowrap="nowrap" valign="top">Code Description</td>
  60. <td><asp:TextBox ID="codeDesc" CssClass="unicodeFont" runat="server" TextMode="MultiLine" Width="600px" Height="50px"></asp:TextBox></td>
  61. </tr>
  62. <tr>
  63. <td class="frmLable" nowrap="nowrap" valign="top">Payment Method Desc</td>
  64. <td><asp:TextBox ID="paymentMethodDesc" CssClass="unicodeFont" runat="server" TextMode="MultiLine" Width="600px" Height="50px"></asp:TextBox></td>
  65. </tr>
  66. <tr>
  67. <td class="frmLable" nowrap="nowrap">Messaage Type</td>
  68. <td><asp:DropDownList ID="messageType" runat="server">
  69. <asp:ListItem Value="Pay">Pay</asp:ListItem>
  70. <asp:ListItem Value="Send">Send</asp:ListItem>
  71. <asp:ListItem Value="Cancel">Cancel</asp:ListItem>
  72. </asp:DropDownList>
  73. </td>
  74. </tr>
  75. <tr>
  76. <td class="frmLable" nowrap="nowrap">Is Active</td>
  77. <td><asp:DropDownList ID="isActive" runat="server">
  78. <asp:ListItem Value="Active">Active</asp:ListItem>
  79. <asp:ListItem Value="Inactive">Inactive</asp:ListItem>
  80. </asp:DropDownList>
  81. </td>
  82. </tr>
  83. <tr>
  84. <td>&nbsp;</td>
  85. <td>
  86. <asp:Button ID="btnSave" runat="server" Text="Save" ValidationGroup="country"
  87. CssClass="button" TabIndex="5" onclick="btnSave_Click" />
  88. <cc1:ConfirmButtonExtender ID="btnSumitcc" runat="server"
  89. ConfirmText="Confirm To Save ?" Enabled="True" TargetControlID="btnSave">
  90. </cc1:ConfirmButtonExtender>&nbsp;
  91. <input id="btnBack" type="button" value="Back" class="button" onClick="Javascript:history.back(); " />
  92. </td>
  93. </tr>
  94. </table>
  95. </td>
  96. </tr>
  97. </table>
  98. </form>
  99. </body>
  100. </html>