Browse Source

Merge branch 'staging' of http://202.166.220.79:3000/IME-LONDON/WEB_CORE into feature/Redmine-16525-Cosmetic_Changes

# Conflicts:
#	Swift.web/Library/GetStatic.cs
#	Swift.web/MobileRemit/Admin/Reports/CustomerRegistrationStatus.aspx.cs
#	Swift.web/Remit/Transaction/Reports/TransactionNew/TranReport.aspx.cs
feature/Redmine-16525-Cosmetic_Changes
Leeza Baidar 2 months ago
parent
commit
c1bd54c6c6
  1. 21
      Swift.DAL/Remittance/Transaction/TranAgentReportDao.cs
  2. 24
      Swift.DAL/Remittance/Transaction/UpdateBranchDao.cs
  3. 8
      Swift.DAL/app.config
  4. 2
      Swift.web/AgentNew/Administration/CustomerSetup/CustomerRegistration/Manage.aspx
  5. 190
      Swift.web/DashboardV2/Dashboard2.aspx
  6. 2
      Swift.web/DashboardV2/Dashboard2.aspx.cs
  7. 6
      Swift.web/DashboardV2/assets/js/dashboardv2.js
  8. 1
      Swift.web/Library/GetStatic.cs
  9. 2
      Swift.web/Library/PasswordGenerator.cs
  10. 1
      Swift.web/MobileRemit/Admin/Operation/EditCustomerForActivation.aspx.cs
  11. 2
      Swift.web/MobileRemit/Admin/Operation/EditCustomerForApproval.aspx
  12. 46
      Swift.web/MobileRemit/Admin/PushNotification/ManageBroadCast.aspx
  13. 1
      Swift.web/MobileRemit/Admin/Reports/CustomerRegistrationStatus.aspx.cs
  14. 9
      Swift.web/Remit/Administration/CustomerRegistration/Manage.aspx.cs
  15. 2
      Swift.web/Remit/TPSetup/BankAndBranchSetup/BankList.aspx.cs
  16. 5
      Swift.web/Remit/TPSetup/BankAndBranchSetup/ListBranch.aspx.cs
  17. 3
      Swift.web/Remit/TPSetup/BankAndBranchSetup/NewBankList.aspx.cs
  18. 2
      Swift.web/Remit/Transaction/Reports/TransactionNew/Mange.aspx
  19. 1
      Swift.web/Remit/Transaction/Reports/TransactionNew/Mange.aspx.cs
  20. 17
      Swift.web/Remit/UserControl/UcTransaction.ascx
  21. 3
      Swift.web/Remit/UserControl/UcTransaction.ascx.cs
  22. 27
      Swift.web/Remit/UserControl/UcTransaction.ascx.designer.cs
  23. 36
      Swift.web/Swift.web.csproj
  24. 283
      Swift.web/Web.config

21
Swift.DAL/Remittance/Transaction/TranAgentReportDao.cs

@ -393,7 +393,26 @@ namespace Swift.DAL.BL.Remit.Transaction
return ParseReportResult(sql); return ParseReportResult(sql);
} }
//public ReportResult GetCustomerRegistrationReport(string user, string flag, string fromDate, string toDate)
//{
// var sql = "PROC_REGISTRATION_REPORT ";
// sql += "@flag =" + FilterString(flag); ;
// sql += ",@user=" + FilterString(user);
// sql += ",@FROM_DATE=" + FilterString(fromDate);
// sql += ",@TO_DATE=" + FilterString(toDate);
// return ParseReportResult(sql);
//}
//public ReportResult GetLowTxnReport(string user, string flag, string toDate, string postCode, string txnCountType, string txnCount)
//{
// var sql = "proc_low_txn_report ";
// sql += "@flag =" + FilterString(flag); ;
// sql += ",@user=" + FilterString(user);
// sql += ",@toDate=" + FilterString(toDate);
// sql += ",@postCode=" + FilterString(postCode);
// sql += ",@txnCountType=" + FilterString(txnCountType);
// sql += ",@txnCount=" + FilterString(txnCount);
// return ParseReportResult(sql);
//}
public ReportResult GetDisabledCustomersReport(string user, string flag, string fromDate, string toDate) public ReportResult GetDisabledCustomersReport(string user, string flag, string fromDate, string toDate)
{ {
var sql = "PROC_REGISTRATION_REPORT "; var sql = "PROC_REGISTRATION_REPORT ";

24
Swift.DAL/Remittance/Transaction/UpdateBranchDao.cs

@ -60,8 +60,6 @@ namespace Swift.DAL.Remittance.Transaction
public DataTable InsertOrUpdateBank(string user, string flag, string recordId, string countryId, string paymentMode, string bankName, string pCurrency, string bankState, string bankDistrict, string bankAddress, string bankPhone, string bankEmail, string isActive) public DataTable InsertOrUpdateBank(string user, string flag, string recordId, string countryId, string paymentMode, string bankName, string pCurrency, string bankState, string bankDistrict, string bankAddress, string bankPhone, string bankEmail, string isActive)
{ {
string sql; string sql;
// Insert operation
sql = "EXEC Proc_UpdateBranchCode @flag = " + FilterString(flag); sql = "EXEC Proc_UpdateBranchCode @flag = " + FilterString(flag);
sql += ", @bankId = " + FilterString(recordId); sql += ", @bankId = " + FilterString(recordId);
sql += ", @pCountryName = " + FilterString(countryId); sql += ", @pCountryName = " + FilterString(countryId);
@ -83,7 +81,6 @@ namespace Swift.DAL.Remittance.Transaction
public DataTable InsertOrUpdateBankMapping(string user, string flag, string recordId, string countryId, string parnerId, string bankId, string pMode, string bankCode1, string bankCode2, string pCurrency, string bAddress, string isActive) public DataTable InsertOrUpdateBankMapping(string user, string flag, string recordId, string countryId, string parnerId, string bankId, string pMode, string bankCode1, string bankCode2, string pCurrency, string bAddress, string isActive)
{ {
string sql; string sql;
// Insert operation
sql = "EXEC Proc_UpdateBranchCode @flag = " + FilterString(flag); sql = "EXEC Proc_UpdateBranchCode @flag = " + FilterString(flag);
sql += ", @bankId = " + FilterString(recordId); sql += ", @bankId = " + FilterString(recordId);
sql += ", @pCountryName = " + FilterString(countryId); sql += ", @pCountryName = " + FilterString(countryId);
@ -127,26 +124,22 @@ namespace Swift.DAL.Remittance.Transaction
sql += " @flag = 'editBankMapping'"; sql += " @flag = 'editBankMapping'";
sql += ", @user = " + FilterString(user); sql += ", @user = " + FilterString(user);
sql += ", @bankId = " + FilterString(bankId); sql += ", @bankId = " + FilterString(bankId);
DataSet ds = ExecuteDataset(sql); DataSet ds = ExecuteDataset(sql);
if (ds == null || ds.Tables.Count == 0 || ds.Tables[0].Rows.Count == 0) if (ds == null || ds.Tables.Count == 0 || ds.Tables[0].Rows.Count == 0)
return null; return null;
return ds.Tables[0].Rows[0]; return ds.Tables[0].Rows[0];
} }
public DataRow EditBankSelectById(string bankId, string user) public DataRow EditBankSelectById(string bankId, string user)
{ {
string sql = "EXEC Proc_UpdateBranchCode"; string sql = "EXEC Proc_UpdateBranchCode";
sql += " @flag = 'editBank'"; sql += " @flag = 'editBank'";
sql += ", @user = " + FilterString(user); sql += ", @user = " + FilterString(user);
sql += ", @bankId = " + FilterString(bankId); sql += ", @bankId = " + FilterString(bankId);
DataSet ds = ExecuteDataset(sql); DataSet ds = ExecuteDataset(sql);
if (ds == null || ds.Tables.Count == 0 || ds.Tables[0].Rows.Count == 0) if (ds == null || ds.Tables.Count == 0 || ds.Tables[0].Rows.Count == 0)
return null; return null;
return ds.Tables[0].Rows[0]; return ds.Tables[0].Rows[0];
} }
public DataRow EditBranchSelectById(string bankId, string user) public DataRow EditBranchSelectById(string bankId, string user)
{ {
string sql = "EXEC Proc_UpdateBranchCode"; string sql = "EXEC Proc_UpdateBranchCode";
@ -254,23 +247,6 @@ namespace Swift.DAL.Remittance.Transaction
return ParseDbResult(sql); return ParseDbResult(sql);
} }
//public DbResult Delete(string user, string rowId)
//{
// var sql = "EXEC PROC_REFERALSETUP @flag = 'delete'";
// sql += ", @user = " + FilterString(user);
// sql += ", @rowId = " + FilterString(rowId);
// return ParseDbResult(sql);
//}
//public DbResult Delete(string acct_id, string user)
//{
// string sql = "EXEC PROC_API_BANK_BRANCH_SETUP";
// sql += " @flag ='delete'";
// sql += ", @bankId" + FilterString(acct_id);
// sql += ", @user=" + FilterString(user);
// return ParseDbResult(ExecuteDataset(sql).Tables[0]);
//}
public DbResult DeleteBankMapping(string bankId, string user) public DbResult DeleteBankMapping(string bankId, string user)
{ {
string sql = "EXEC Proc_UpdateBranchCode"; string sql = "EXEC Proc_UpdateBranchCode";

8
Swift.DAL/app.config

@ -1,13 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<configuration> <configuration>
<configSections> <configSections>
</configSections> </configSections>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" /></startup>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/></startup>
<runtime> <runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly> <dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" />
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0"/>
</dependentAssembly> </dependentAssembly>
</assemblyBinding> </assemblyBinding>
</runtime> </runtime>

2
Swift.web/AgentNew/Administration/CustomerSetup/CustomerRegistration/Manage.aspx

@ -793,7 +793,7 @@
ControlToValidate="emailConfirm"></asp:RegularExpressionValidator> ControlToValidate="emailConfirm"></asp:RegularExpressionValidator>
</div> </div>
</div> </div>
<div id="apiDataPopup" class="modal" role="dialog">
<div id="apiDataPopup" class="modal" role="dialog">
<div class="modal-dialog"> <div class="modal-dialog">
<div class="modal-content"> <div class="modal-content">
<div class="modal-header"> <div class="modal-header">

190
Swift.web/DashboardV2/Dashboard2.aspx

@ -67,6 +67,7 @@
.footer-text { .footer-text {
color: white; color: white;
} }
.auto-style1 { .auto-style1 {
flex: 0 0 auto; flex: 0 0 auto;
width: 100%; width: 100%;
@ -459,7 +460,7 @@
</div> </div>
<!-- end msg-body --> <!-- end msg-body -->
</a> </a>
<%-- <a href="../Remit/Compliance/ApproveOFACandComplaince/List.aspx?tranType=M&kycStatus=KYC_NOW" target="_blank" class="list-group-item list-group-item-action">
<%-- <a href="../Remit/Compliance/ApproveOFACandComplaince/List.aspx?tranType=M&kycStatus=KYC_NOW" target="_blank" class="list-group-item list-group-item-action">
<div class="msg-body d-flex align-items-center"> <div class="msg-body d-flex align-items-center">
<div class="icon-element bg-3 flex-shrink-0 mr-3 ml-0"> <div class="icon-element bg-3 flex-shrink-0 mr-3 ml-0">
<i class='uil uil-bell'></i> <i class='uil uil-bell'></i>
@ -481,7 +482,7 @@
</div> </div>
</div> </div>
<div class="col-xl-6" id="customerKycStatusList" runat="server"> <div class="col-xl-6" id="customerKycStatusList" runat="server">
<div class="card"> <div class="card">
<div class="card-body p-0" style="min-height: 267px !important;"> <div class="card-body p-0" style="min-height: 267px !important;">
@ -546,18 +547,12 @@
</div> </div>
<!-- end msg-body --> <!-- end msg-body -->
</a> </a>
<div class="msg-body d-flex align-items-center">
<div class="icon-element bg-10 flex-shrink-0 mr-3 ml-0">
<i class='uil uil-bell'></i>
</div> </div>
<div class="msg-content w-100" style="margin-left: 10px;">
<h3 class="title pb-1" style="font-size: 14px !important;">KYC Completed</h3>
<p class="msg-text" style="color: red;" id="kycCompletedCust">0</p>
</div> </div>
</div> </div>
</div>
</div>
<%--<div class="col-xl-6" id="userwiseDailyTxnRoleDiv" runat="server">
</div>
</div>
<%--<div class="col-xl-6" id="userwiseDailyTxnRoleDiv" runat="server">
</div> </div>
</a> </a>
</div> </div>
@ -591,101 +586,100 @@
</div> </div>
</div> </div>
</div>--%> </div>--%>
</div>
<!-- end row -->
</div>
<!-- container -->
</div>
<!-- content -->
<!-- Footer Start -->
<footer class="footer" style="left: 0 !important; background-color: #262262; color: #fff;">
<div class="container-fluid">
<div class="row">
<div class="col-md-12 text-center">
<a class="footer-text" href="">IME London is a trading name of Subhida UK Ltd, Pentax House, South Hill Avenue, South Harrow, London, HA2 0DU, Company Registration No: 06432399<br />
Subhida UK Ltd is authorized and regulated by the Financial Conduct Authority (FCA) under the Payment Service Regulations 2017, FCA Registration No: 576127, HMRC Registration No: XYML000000119350<br />
&copy; IME London, 2023</a>
</div>
</div>
</div>
</footer>
<!-- end Footer -->
</div> </div>
<!-- end row -->
<!-- ============================================================== -->
<!-- End Page content -->
<!-- ============================================================== -->
</div> </div>
<!-- container -->
</div>
<!-- content -->
<!-- END wrapper -->
<!-- Footer Start -->
<footer class="footer" style="left: 0 !important; background-color: #262262; color: #fff;">
<div class="container-fluid">
<div class="row">
<div class="col-md-12 text-center">
<a class="footer-text" href="">IME London is a trading name of Subhida UK Ltd, Pentax House, South Hill Avenue, South Harrow, London, HA2 0DU, Company Registration No: 06432399<br />
Subhida UK Ltd is authorized and regulated by the Financial Conduct Authority (FCA) under the Payment Service Regulations 2017, FCA Registration No: 576127, HMRC Registration No: XYML000000119350<br />
&copy; IME London, 2023</a>
<%--Modal for Agentwise txn--%>
<div class="modal fade bd-example-modal-lg" id="gridAgentWiseModal" tabindex="-1" role="dialog" aria-labelledby="gridAgentWiseModalLabel" aria-hidden="true" style="max-height: 900px;">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="gridAgentWiseModalLabel">Agent wise number of transactions</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close" onclick="ClosePopup()" style="border: 0px; background: transparent; font-size: 25px; font-weight: 800;">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body" style="max-height: 500px;">
<table class="table table-responsive table-bordered" id="tableAgentWisePopup" style="max-height: 500px;">
<thead>
<tr>
<th>S. No.</th>
<th>Agent Name</th>
<th>Current Month</th>
<th>Previous Month</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="3" align="center">No data to display!</td>
</tr>
</tbody>
</table>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" onclick="ClosePopup()">Close</button>
<%--<button type="button" class="btn btn-primary">Save changes</button>--%>
</div>
</div> </div>
</div> </div>
</div> </div>
</footer>
<!-- end Footer -->
</div>
<!-- ============================================================== -->
<!-- End Page content -->
<!-- ============================================================== -->
</div>
<!-- END wrapper -->
<%--Modal for Agentwise txn--%>
<div class="modal fade bd-example-modal-lg" id="gridAgentWiseModal" tabindex="-1" role="dialog" aria-labelledby="gridAgentWiseModalLabel" aria-hidden="true" style="max-height: 900px;">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="gridAgentWiseModalLabel">Agent wise number of transactions</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close" onclick="ClosePopup()" style="border: 0px; background: transparent; font-size: 25px; font-weight: 800;">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body" style="max-height: 500px;">
<table class="table table-responsive table-bordered" id="tableAgentWisePopup" style="max-height: 500px;">
<thead>
<tr>
<th>S. No.</th>
<th>Agent Name</th>
<th>Current Month</th>
<th>Previous Month</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="3" align="center">No data to display!</td>
</tr>
</tbody>
</table>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" onclick="ClosePopup()">Close</button>
<%--<button type="button" class="btn btn-primary">Save changes</button>--%>
</div>
</div>
</div>
</div>
<div class="modal fade bd-example-modal-lg" id="gridUserWiseModal" tabindex="-1" role="dialog" aria-labelledby="gridAgentWiseModalLabel" aria-hidden="true" style="max-height: 900px;">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="gridUserWiseModalLabel">Userwise Daily Transactions</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close" onclick="ClosePopup()" style="border: 0px; background: transparent; font-size: 25px; font-weight: 800;">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body" style="max-height: 500px;">
<table class="table table-responsive table-bordered" id="tableUserWisePopup" style="max-height: 500px;">
<thead>
<tr>
<th>S. No.</th>
<th>Teller Name</th>
<th>Transaction Count</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="3" align="center">No data to display!</td>
</tr>
</tbody>
</table>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" onclick="ClosePopup()">Close</button>
<%--<button type="button" class="btn btn-primary">Save changes</button>--%>
<div class="modal fade bd-example-modal-lg" id="gridUserWiseModal" tabindex="-1" role="dialog" aria-labelledby="gridAgentWiseModalLabel" aria-hidden="true" style="max-height: 900px;">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="gridUserWiseModalLabel">Userwise Daily Transactions</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close" onclick="ClosePopup()" style="border: 0px; background: transparent; font-size: 25px; font-weight: 800;">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body" style="max-height: 500px;">
<table class="table table-responsive table-bordered" id="tableUserWisePopup" style="max-height: 500px;">
<thead>
<tr>
<th>S. No.</th>
<th>Teller Name</th>
<th>Transaction Count</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="3" align="center">No data to display!</td>
</tr>
</tbody>
</table>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" onclick="ClosePopup()">Close</button>
<%--<button type="button" class="btn btn-primary">Save changes</button>--%>
</div>
</div>
</div>
</div> </div>
</div>
</div>
</div>
</form> </form>
<script src="assets/js/vendor.min.js"></script> <script src="assets/js/vendor.min.js"></script>
<script src="assets/Vendor/moment/min/moment.min.js"></script> <script src="assets/Vendor/moment/min/moment.min.js"></script>

2
Swift.web/DashboardV2/Dashboard2.aspx.cs

@ -70,8 +70,6 @@ namespace Swift.web.DashboardV2
// complianceOfacRoleDiv.Attributes.Add("style", "display:none;"); // complianceOfacRoleDiv.Attributes.Add("style", "display:none;");
////if (!sl.HasRight(AgentwiseNumberRole)) ////if (!sl.HasRight(AgentwiseNumberRole))
//// agentWiseTxnRoleDiv.Attributes.Add("style", "display:none;"); //// agentWiseTxnRoleDiv.Attributes.Add("style", "display:none;");
//if (!sl.HasRight(UserwiseNumberRole))
// userwiseDailyTxnRoleDiv.Attributes.Add("style", "display:none;");
//if (!sl.HasRight(customerKycStatus)) //if (!sl.HasRight(customerKycStatus))
// customerKycStatusList.Attributes.Add("style", "display:none;"); // customerKycStatusList.Attributes.Add("style", "display:none;");
//if (!sl.HasRight(LawsonSummaryRole)) //if (!sl.HasRight(LawsonSummaryRole))

6
Swift.web/DashboardV2/assets/js/dashboardv2.js

@ -115,8 +115,8 @@ function LoadChartData() {
if (loadDate) { if (loadDate) {
//Compliance/OFAC Hold Transactions //Compliance/OFAC Hold Transactions
if (Response.ComplianceData != null) { if (Response.ComplianceData != null) {
$('#complianceHoldCount').text(Response.ComplianceData.OFACComplianceTxns);
$('#complianceHoldCountMobileKycLater').text(Response.ComplianceData.OFACComplianceMobileTxnsKycLater);
$('#complianceHoldCount').text(Response.ComplianceData.OFACComplianceTxns);
$('#complianceHoldCountMobileKycLater').text(Response.ComplianceData.OFACComplianceMobileTxnsKycLater);
} }
// $('#complianceHoldCountMobileKycNow').text(Response.ComplianceData.OFACComplianceMobileTxnsKycNow); // $('#complianceHoldCountMobileKycNow').text(Response.ComplianceData.OFACComplianceMobileTxnsKycNow);
@ -125,11 +125,9 @@ function LoadChartData() {
$('#mobileCustomerCount').text(Response.CustomerData.MobileCustomers); $('#mobileCustomerCount').text(Response.CustomerData.MobileCustomers);
$('#mobileCustomerCount').text(Response.CustomerData.MobileCustomers); $('#mobileCustomerCount').text(Response.CustomerData.MobileCustomers);
//KYC Status
$('#kycProcessingCust').text(Response.KycStatus.KycProcessing); $('#kycProcessingCust').text(Response.KycStatus.KycProcessing);
$('#kycNotCompletedCust').text(Response.KycStatus.KycNotCompleted); $('#kycNotCompletedCust').text(Response.KycStatus.KycNotCompleted);
$('#kycCompletedCust').text(Response.KycStatus.KycCompleted); $('#kycCompletedCust').text(Response.KycStatus.KycCompleted);
//Agent wise transaction show //Agent wise transaction show
//let html = ''; //let html = '';
//if (AgentWiseTxn.length > 0) { //if (AgentWiseTxn.length > 0) {

1
Swift.web/Library/GetStatic.cs

@ -22,6 +22,7 @@ using System.Xml.Serialization;
using SelectPdf; using SelectPdf;
using Newtonsoft.Json; using Newtonsoft.Json;
using System.Linq; using System.Linq;
using System.Security.Cryptography;
//using SelectPdf; //using SelectPdf;

2
Swift.web/Library/PasswordGenerator.cs

@ -84,9 +84,9 @@ namespace Swift.web.Library
{ {
password += rand.Next(0, 10); password += rand.Next(0, 10);
} }
return password; return password;
} }
} }
} }

1
Swift.web/MobileRemit/Admin/Operation/EditCustomerForActivation.aspx.cs

@ -477,5 +477,6 @@ namespace Swift.web.MobileRemit.Admin.Operation
return jsonResponse; return jsonResponse;
} }
} }
} }

2
Swift.web/MobileRemit/Admin/Operation/EditCustomerForApproval.aspx

@ -1645,7 +1645,6 @@
</div> </div>
</div> </div>
</div> </div>
<div class="col-md-6" id="customerSelfieDiv"> <div class="col-md-6" id="customerSelfieDiv">
<div class="form-group"> <div class="form-group">
<label>Customer Selfie</label> <label>Customer Selfie</label>
@ -1686,7 +1685,6 @@
</div> </div>
</div> </div>
</div> </div>
</div> </div>

46
Swift.web/MobileRemit/Admin/PushNotification/ManageBroadCast.aspx

@ -32,7 +32,7 @@
var rowId = "<%=GetRowId()%>"; var rowId = "<%=GetRowId()%>";
var customerType = $("#ddlCustomerType").val(); var customerType = $("#ddlCustomerType").val();
// alert(customerType);
// alert(customerType);
if (customerType == "All") { if (customerType == "All") {
return true; return true;
} }
@ -162,19 +162,19 @@
<div class="col-md-6"> <div class="col-md-6">
<div class="form-group"> <div class="form-group">
<asp:DropDownList ID="ddlCustomerType" runat="server" CssClass="form-control" Style="margin-bottom: 5px;"></asp:DropDownList> <asp:DropDownList ID="ddlCustomerType" runat="server" CssClass="form-control" Style="margin-bottom: 5px;"></asp:DropDownList>
</div>
</div> </div>
<div class="col-md-6"> <div class="col-md-6">
<uc1:SwiftTextBox runat="server" ID="txtSearchData" Category="remit-searchCustomerForPushNotif" CssClass="form-control required" Param1="@GetCustomerSearchType()" Title="Blank for All" /> <uc1:SwiftTextBox runat="server" ID="txtSearchData" Category="remit-searchCustomerForPushNotif" CssClass="form-control required" Param1="@GetCustomerSearchType()" Title="Blank for All" />
</div> </div>
<div class="col-md-6"> <div class="col-md-6">
<div class="form-group">
<asp:DropDownList ID="ddlNativeCountry" runat="server" CssClass="form-control" Style="margin-bottom: 5px;"></asp:DropDownList>
</div> </div>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<asp:DropDownList ID="ddlNativeCountry" runat="server" CssClass="form-control" Style="margin-bottom: 5px;">
</asp:DropDownList>
</div> </div>
</div> </div>
</div>
</div>--%> </div>--%>
<div class="col-md-3 form-group"> <div class="col-md-3 form-group">
<label>Select Customer : <span class="errormsg">*</span></label> <label>Select Customer : <span class="errormsg">*</span></label>
@ -185,18 +185,12 @@
<div class="col-md-4 form-group"> <div class="col-md-4 form-group">
<uc1:SwiftTextBox runat="server" ID="txtSearchData" Category="remit-searchCustomerForPushNotif" CssClass="form-control required" Param1="@GetCustomerSearchType()" Title="Blank for All" /> <uc1:SwiftTextBox runat="server" ID="txtSearchData" Category="remit-searchCustomerForPushNotif" CssClass="form-control required" Param1="@GetCustomerSearchType()" Title="Blank for All" />
</div> </div>
<div class="col-md-6">
<div class="col-md-4">
<div class="form-group"> <div class="form-group">
<asp:DropDownList ID="ddlNativeCountry" runat="server" CssClass="form-control" Style="margin-bottom: 5px;"></asp:DropDownList> <asp:DropDownList ID="ddlNativeCountry" runat="server" CssClass="form-control" Style="margin-bottom: 5px;"></asp:DropDownList>
</div> </div>
</div> </div>
<%--<div class="col-md-4">
<div class="form-group">
<asp:TextBox ID="txtPostCode" AutoComplete="off" runat="server" CssClass="form-control"></asp:TextBox>
</div>
</div>--%>
</div> </div>
<div class="row" id="divPostCode" runat="server"> <div class="row" id="divPostCode" runat="server">
<div class="col-md-3 form-group"> <div class="col-md-3 form-group">
<label id="lblPostCode" style="display: none;">Post Code :</label> <label id="lblPostCode" style="display: none;">Post Code :</label>
@ -233,21 +227,25 @@
</div> </div>
</div> </div>
</div> </div>
<div class="row">
</div>
<div class="row">
<div class="col-md-12">
<div class="form-group">
<asp:Button ID="btnSave" runat="server" Text="Save" CssClass="btn btn-primary m-t-25" OnClientClick="return CheckFormValidation();" Visible="false" OnClick="btnSave_Click" />
<asp:Button ID="btnSaveAndSend" runat="server" Text="Save & Send" CssClass="btn btn-primary m-t-25" OnClientClick="return CheckFormValidation();" OnClick="btnSaveAndSend_Click" />
<asp:Button runat="server" class="btn btn-info m-t-25" ID="clear" OnClientClick="ClearClicked(); return false;" Text="Clear" />
<asp:HiddenField ID="HDNBody" runat="server" />
</div>
</div>
</div>
</div>
<div class="row">
</div>
<div class="row">
<div class="col-md-12">
<div class="form-group">
<asp:Button ID="btnSave" runat="server" Text="Save" CssClass="btn btn-primary m-t-25" OnClientClick="return CheckFormValidation();" Visible="false" OnClick="btnSave_Click" />
<asp:Button ID="btnSaveAndSend" runat="server" Text="Save & Send" CssClass="btn btn-primary m-t-25" OnClientClick="return CheckFormValidation();" OnClick="btnSaveAndSend_Click" />
<asp:Button runat="server" class="btn btn-info m-t-25" ID="clear" OnClientClick="ClearClicked(); return false;" Text="Clear" />
<asp:HiddenField ID="HDNBody" runat="server" />
</div> </div>
</div> </div>
</div> </div>
</div> </div>
</div>
</div>
</form> </form>
</body> </body>
</html> </html>

1
Swift.web/MobileRemit/Admin/Reports/CustomerRegistrationStatus.aspx.cs

@ -220,7 +220,6 @@ namespace Swift.web.MobileRemit.Admin.Reports
protected void activate_Click(object sender, EventArgs e) protected void activate_Click(object sender, EventArgs e)
{ {
string customerId = txtSearchData.Value.Split('|')[0]; string customerId = txtSearchData.Value.Split('|')[0];
//var custompass = PasswordGenerator.GenerateRandomPassword();
var custompass = PasswordGenerator.GenerateRandomNumericPassword(); var custompass = PasswordGenerator.GenerateRandomNumericPassword();
var membershipId = Request.Form["membershipId"]; var membershipId = Request.Form["membershipId"];
var dbRes = _cd.ActivateMobileLogin(GetStatic.GetUser(), customerId, custompass, membershipId); var dbRes = _cd.ActivateMobileLogin(GetStatic.GetUser(), customerId, custompass, membershipId);

9
Swift.web/Remit/Administration/CustomerRegistration/Manage.aspx.cs

@ -406,11 +406,10 @@ namespace Swift.web.Remit.Administration.CustomerRegistration
Page_Load(sender, e); Page_Load(sender, e);
return; return;
} }
private void PrintMessage(string msg)
{
GetStatic.CallBackJs1(Page, "Msg", "alert('" + msg + "');");
}
//private void PrintMessage(string msg)
//{
// GetStatic.CallBackJs1(Page, "Msg", "alert('" + msg + "');");
//}
private void PrintMessage(string msg) private void PrintMessage(string msg)
{ {
GetStatic.CallBackJs1(Page, "Msg", "alert('" + msg + "');"); GetStatic.CallBackJs1(Page, "Msg", "alert('" + msg + "');");

2
Swift.web/Remit/TPSetup/BankAndBranchSetup/BankList.aspx.cs

@ -95,7 +95,6 @@ namespace Swift.web.Remit.TPSetup.BankAndBranchSetup
private void DeleteRow() private void DeleteRow()
{ {
string id = _grid.GetCurrentRowId(GridName); string id = _grid.GetCurrentRowId(GridName);
if (id == "") if (id == "")
return; return;
var user = GetStatic.GetUser(); var user = GetStatic.GetUser();
@ -111,6 +110,7 @@ namespace Swift.web.Remit.TPSetup.BankAndBranchSetup
GetStatic.AlertMessage(this, dbResult.Msg); GetStatic.AlertMessage(this, dbResult.Msg);
} }
} }
protected void btnUpdate_Click(object sender, EventArgs e) protected void btnUpdate_Click(object sender, EventArgs e)
{ {
BankBranchDao _dao = new BankBranchDao(); BankBranchDao _dao = new BankBranchDao();

5
Swift.web/Remit/TPSetup/BankAndBranchSetup/ListBranch.aspx.cs

@ -90,11 +90,10 @@ namespace Swift.web.Remit.TPSetup.BankAndBranchSetup
rpt_grid.InnerHtml = _grid.CreateGrid(sql); rpt_grid.InnerHtml = _grid.CreateGrid(sql);
} }
private void DeleteRow() private void DeleteRow()
{ {
string id = _grid.GetCurrentRowId(GridName); string id = _grid.GetCurrentRowId(GridName);
if (id == "") if (id == "")
return; return;
var user = GetStatic.GetUser(); var user = GetStatic.GetUser();
@ -115,8 +114,6 @@ namespace Swift.web.Remit.TPSetup.BankAndBranchSetup
return GetStatic.ReadQueryString("bankId", ""); return GetStatic.ReadQueryString("bankId", "");
} }
protected void btnUpdate_Click(object sender, EventArgs e) protected void btnUpdate_Click(object sender, EventArgs e)
{ {

3
Swift.web/Remit/TPSetup/BankAndBranchSetup/NewBankList.aspx.cs

@ -87,12 +87,9 @@ namespace Swift.web.Remit.TPSetup.BankAndBranchSetup
rpt_grid.InnerHtml = _grid.CreateGrid(sql); rpt_grid.InnerHtml = _grid.CreateGrid(sql);
} }
private void DeleteRow() private void DeleteRow()
{ {
string id = _grid.GetCurrentRowId(GridName); string id = _grid.GetCurrentRowId(GridName);
if (id == "") if (id == "")
return; return;
var user = GetStatic.GetUser(); var user = GetStatic.GetUser();

2
Swift.web/Remit/Transaction/Reports/TransactionNew/Mange.aspx

@ -24,7 +24,7 @@
function GetAgentId() { function GetAgentId() {
return GetValue("<%=pAgent.ClientID %>"); return GetValue("<%=pAgent.ClientID %>");
} }
function LoadCalendars() { function LoadCalendars() {
$('#<% =frmDate.ClientID%>').mask('0000-00-00'); $('#<% =frmDate.ClientID%>').mask('0000-00-00');
$('#<% =toDate.ClientID%>').mask('0000-00-00'); $('#<% =toDate.ClientID%>').mask('0000-00-00');

1
Swift.web/Remit/Transaction/Reports/TransactionNew/Mange.aspx.cs

@ -80,7 +80,6 @@ namespace Swift.web.Remit.Transaction.Reports.TransactionNew
private void PopulateDll() private void PopulateDll()
{ {
sdd.SetDDL3(ref payoutPartner, "EXEC proc_dropDownLists @flag='partner-list'", "agentId", "agentName", "", "All"); sdd.SetDDL3(ref payoutPartner, "EXEC proc_dropDownLists @flag='partner-list'", "agentId", "agentName", "", "All");
//sdd.SetDDL3(ref sendingPartner, "EXEC proc_dropDownLists @flag='tranType'", "id", "srouteId", "", "All");
sl.SetDDL(ref depositType, "EXEC proc_online_dropDownList @flag='paymentMode',@user='" + GetStatic.GetUser() + "'", "detailTitle", "detailTitle", "", "All"); sl.SetDDL(ref depositType, "EXEC proc_online_dropDownList @flag='paymentMode',@user='" + GetStatic.GetUser() + "'", "detailTitle", "detailTitle", "", "All");
sl.SetDDL(ref ddlPCountry, "EXEC proc_dropDownLists @flag='pCountry'", "countryId", "countryName", "", "All"); sl.SetDDL(ref ddlPCountry, "EXEC proc_dropDownLists @flag='pCountry'", "countryId", "countryName", "", "All");
sl.SetDDL(ref ddlSCountry, "EXEC proc_dropDownLists @flag='sCountry'", "countryId", "countryName", "", "All"); sl.SetDDL(ref ddlSCountry, "EXEC proc_dropDownLists @flag='sCountry'", "countryId", "countryName", "", "All");

17
Swift.web/Remit/UserControl/UcTransaction.ascx

@ -387,6 +387,23 @@
</table> </table>
</td> </td>
<td class="row">
<table class="table table-bordered table-striped" id="tblVerifiedLog" runat="server" visible="false">
<tr>
<td>Verified By:</td>
<td>
<asp:Label ID="verifiedBy" runat="server"></asp:Label>
</td>
</tr>
<tr>
<td>Verified Date:</td>
<td>
<asp:Label ID="verifiedDate" runat="server"></asp:Label>
</td>
</tr>
</table>
</td>
<td class="row"> <td class="row">
<table class="table table-bordered table-striped table-responsive" id="tblCreatedFrom" runat="server" visible="true"> <table class="table table-bordered table-striped table-responsive" id="tblCreatedFrom" runat="server" visible="true">
<tr> <tr>

3
Swift.web/Remit/UserControl/UcTransaction.ascx.cs

@ -444,12 +444,15 @@ namespace Swift.web.Remit.UserControl
createdFrom.Text = tRow["createdFrom"].ToString(); createdFrom.Text = tRow["createdFrom"].ToString();
hddPayTokenId.Value = tRow["payTokenId"].ToString(); hddPayTokenId.Value = tRow["payTokenId"].ToString();
introducer.Text = tRow["introducer"].ToString(); introducer.Text = tRow["introducer"].ToString();
verifiedBy.Text = tRow["verifiedBy"].ToString();
verifiedDate.Text = tRow["verifiedDate"].ToString();
tblCreatedLog.Visible = createdBy.Text != ""; tblCreatedLog.Visible = createdBy.Text != "";
tblApprovedLog.Visible = approvedBy.Text != ""; tblApprovedLog.Visible = approvedBy.Text != "";
tblPaidLog.Visible = paidBy.Text != ""; tblPaidLog.Visible = paidBy.Text != "";
tblCancelRequestedLog.Visible = cancelRequestedBy.Text != ""; tblCancelRequestedLog.Visible = cancelRequestedBy.Text != "";
tblCancelApprovedLog.Visible = cancelApprovedBy.Text != ""; tblCancelApprovedLog.Visible = cancelApprovedBy.Text != "";
tblVerifiedLog.Visible = verifiedBy.Text != "";
trNameAsPerBank.Visible = false; trNameAsPerBank.Visible = false;
if (!string.IsNullOrEmpty(tRow["receiverNameAlt"].ToString())) if (!string.IsNullOrEmpty(tRow["receiverNameAlt"].ToString()))

27
Swift.web/Remit/UserControl/UcTransaction.ascx.designer.cs

@ -221,6 +221,33 @@ namespace Swift.web.Remit.UserControl
/// </remarks> /// </remarks>
protected global::System.Web.UI.WebControls.Label cancelApprovedDate; protected global::System.Web.UI.WebControls.Label cancelApprovedDate;
/// <summary>
/// tblVerifiedLog control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlTable tblVerifiedLog;
/// <summary>
/// verifiedBy control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label verifiedBy;
/// <summary>
/// verifiedDate control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label verifiedDate;
/// <summary> /// <summary>
/// tblCreatedFrom control. /// tblCreatedFrom control.
/// </summary> /// </summary>

36
Swift.web/Swift.web.csproj

@ -458,7 +458,6 @@
<Content Include="BillVoucher\VoucherEntry\VoucherEntry.aspx" /> <Content Include="BillVoucher\VoucherEntry\VoucherEntry.aspx" />
<Content Include="BillVoucher\VoucherUpload\Upload.aspx" /> <Content Include="BillVoucher\VoucherUpload\Upload.aspx" />
<Content Include="bin\UAParser.dll" /> <Content Include="bin\UAParser.dll" />
<Content Include="bin\UAParser.xml" />
<Content Include="Common\JPPost.css" /> <Content Include="Common\JPPost.css" />
<Content Include="Common\JPPostKYCInquiry.aspx" /> <Content Include="Common\JPPostKYCInquiry.aspx" />
<Content Include="content\images\Jcrop.gif" /> <Content Include="content\images\Jcrop.gif" />
@ -8184,6 +8183,27 @@
<Compile Include="Remit\TPSetup\BankAndBranchSetup\AddBank.aspx.designer.cs"> <Compile Include="Remit\TPSetup\BankAndBranchSetup\AddBank.aspx.designer.cs">
<DependentUpon>AddBank.aspx</DependentUpon> <DependentUpon>AddBank.aspx</DependentUpon>
</Compile> </Compile>
<Compile Include="Remit\TPSetup\BankAndBranchSetup\AddBankMapping.aspx.cs">
<DependentUpon>AddBankMapping.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="Remit\TPSetup\BankAndBranchSetup\AddBankMapping.aspx.designer.cs">
<DependentUpon>AddBankMapping.aspx</DependentUpon>
</Compile>
<Compile Include="Remit\TPSetup\BankAndBranchSetup\AddBranch.aspx.cs">
<DependentUpon>AddBranch.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="Remit\TPSetup\BankAndBranchSetup\AddBranch.aspx.designer.cs">
<DependentUpon>AddBranch.aspx</DependentUpon>
</Compile>
<Compile Include="Remit\TPSetup\BankAndBranchSetup\AddBank.aspx.cs">
<DependentUpon>AddBank.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="Remit\TPSetup\BankAndBranchSetup\AddBank.aspx.designer.cs">
<DependentUpon>AddBank.aspx</DependentUpon>
</Compile>
<Compile Include="Remit\TPSetup\BankAndBranchSetup\BankList.aspx.cs"> <Compile Include="Remit\TPSetup\BankAndBranchSetup\BankList.aspx.cs">
<DependentUpon>BankList.aspx</DependentUpon> <DependentUpon>BankList.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType> <SubType>ASPXCodeBehind</SubType>
@ -8198,6 +8218,13 @@
<Compile Include="Remit\TPSetup\BankAndBranchSetup\BranchList.aspx.designer.cs"> <Compile Include="Remit\TPSetup\BankAndBranchSetup\BranchList.aspx.designer.cs">
<DependentUpon>BranchList.aspx</DependentUpon> <DependentUpon>BranchList.aspx</DependentUpon>
</Compile> </Compile>
<Compile Include="Remit\TPSetup\BankAndBranchSetup\ListBranch.aspx.cs">
<DependentUpon>ListBranch.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="Remit\TPSetup\BankAndBranchSetup\ListBranch.aspx.designer.cs">
<DependentUpon>ListBranch.aspx</DependentUpon>
</Compile>
<Compile Include="Remit\TPSetup\BankAndBranchSetup\ManagePartnerBank.aspx.cs"> <Compile Include="Remit\TPSetup\BankAndBranchSetup\ManagePartnerBank.aspx.cs">
<DependentUpon>ManagePartnerBank.aspx</DependentUpon> <DependentUpon>ManagePartnerBank.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType> <SubType>ASPXCodeBehind</SubType>
@ -8205,6 +8232,13 @@
<Compile Include="Remit\TPSetup\BankAndBranchSetup\ManagePartnerBank.aspx.designer.cs"> <Compile Include="Remit\TPSetup\BankAndBranchSetup\ManagePartnerBank.aspx.designer.cs">
<DependentUpon>ManagePartnerBank.aspx</DependentUpon> <DependentUpon>ManagePartnerBank.aspx</DependentUpon>
</Compile> </Compile>
<Compile Include="Remit\TPSetup\BankAndBranchSetup\NewBankList.aspx.cs">
<DependentUpon>NewBankList.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="Remit\TPSetup\BankAndBranchSetup\NewBankList.aspx.designer.cs">
<DependentUpon>NewBankList.aspx</DependentUpon>
</Compile>
<Compile Include="Remit\TPSetup\BankAndBranchSetup\AddBankMapping.aspx.cs"> <Compile Include="Remit\TPSetup\BankAndBranchSetup\AddBankMapping.aspx.cs">
<DependentUpon>AddBankMapping.aspx</DependentUpon> <DependentUpon>AddBankMapping.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType> <SubType>ASPXCodeBehind</SubType>

283
Swift.web/Web.config

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0"?>
<!-- <!--
For more information on how to configure your ASP.NET application, please visit For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=169433 http://go.microsoft.com/fwlink/?LinkId=169433
@ -18,243 +18,244 @@
<add key="SmtpPort" value="587" />--> <add key="SmtpPort" value="587" />-->
<configSections> <configSections>
<sectionGroup name="CustomSection" type="Swift.web.Library.MySectionGroup,Swift.Web"> <sectionGroup name="CustomSection" type="Swift.web.Library.MySectionGroup,Swift.Web">
<section name="SDNListSection" type="Swift.web.Library.SDNListSection,Swift.Web" />
<section name="PartnerAgentSection" type="Swift.web.Library.PartnerAgentSection,Swift.Web" />
<section name="SDNListSection" type="Swift.web.Library.SDNListSection,Swift.Web"/>
<section name="PartnerAgentSection" type="Swift.web.Library.PartnerAgentSection,Swift.Web"/>
</sectionGroup> </sectionGroup>
</configSections> </configSections>
<CustomSection> <CustomSection>
<SDNListSection> <SDNListSection>
<SDNListSetting> <SDNListSetting>
<add key="U1267" name="UNSC ISIL AQ" url="https://scsanctions.un.org/14bhken-al-qaida.xml" active="1" field1="QDi,QDe" />
<add key="U1988" name="UNSC Taliban" url="https://scsanctions.un.org/b9un2en-taliban.xml" active="1" field1="TAi,TAe" />
<add key="U2231" name="UNSC IRAN" url="https://scsanctions.un.org/hv81pen-iran.xml" active="1" field1="IRi,IRe" />
<add key="U1718" name="UNSC DPRK" url="https://scsanctions.un.org/o81vken-dprk.xml" active="1" field1="TAi,TAe" />
<add key="U2206" name="UNSC South Sudan" url="https://scsanctions.un.org/6q5upen-southsudan.xml" active="1" field1="SSi,SSe" />
<add key="U1844" name="UNSC Somalia" url="https://scsanctions.un.org/xml/en/somalia" active="1" field1="SOi,SOe" />
<add key="U1591" name="UNSC Sudan" url="https://scsanctions.un.org/bqpppen-sudan.xml" active="1" field1="SDi,SDe" />
<add key="U1970" name="UNSC Libya" url="https://scsanctions.un.org/3z39jen-libya.xml" active="1" field1="LYi,LYe" />
<add key="U2127" name="UNSC South Sudan" url="https://scsanctions.un.org/b8p92en-car.xml" active="1" field1="CFi,CFe" />
<add key="U1533" name="UNSC Congo" url="https://scsanctions.un.org/7koh8en-drc.xml" active="1" field1="CDi,CDe" />
<add key="U2140" name="UNSC Yemen" url="https://scsanctions.un.org/n9521en-yemen.xml" active="1" field1="YEi,YEe" />
<add key="U2048" name="UNSC GB" url="https://scsanctions.un.org/61hj8en-gb.xml" active="1" field1="GBi,GBe" />
<add key="U2374" name="UNSC Mali" url="https://scsanctions.un.org/h5k77en-mali.xml" active="1" field1="MLi,MLe" />
<add key="U1267" name="UNSC ISIL AQ" url="https://scsanctions.un.org/14bhken-al-qaida.xml" active="1" field1="QDi,QDe"/>
<add key="U1988" name="UNSC Taliban" url="https://scsanctions.un.org/b9un2en-taliban.xml" active="1" field1="TAi,TAe"/>
<add key="U2231" name="UNSC IRAN" url="https://scsanctions.un.org/hv81pen-iran.xml" active="1" field1="IRi,IRe"/>
<add key="U1718" name="UNSC DPRK" url="https://scsanctions.un.org/o81vken-dprk.xml" active="1" field1="TAi,TAe"/>
<add key="U2206" name="UNSC South Sudan" url="https://scsanctions.un.org/6q5upen-southsudan.xml" active="1" field1="SSi,SSe"/>
<add key="U1844" name="UNSC Somalia" url="https://scsanctions.un.org/xml/en/somalia" active="1" field1="SOi,SOe"/>
<add key="U1591" name="UNSC Sudan" url="https://scsanctions.un.org/bqpppen-sudan.xml" active="1" field1="SDi,SDe"/>
<add key="U1970" name="UNSC Libya" url="https://scsanctions.un.org/3z39jen-libya.xml" active="1" field1="LYi,LYe"/>
<add key="U2127" name="UNSC South Sudan" url="https://scsanctions.un.org/b8p92en-car.xml" active="1" field1="CFi,CFe"/>
<add key="U1533" name="UNSC Congo" url="https://scsanctions.un.org/7koh8en-drc.xml" active="1" field1="CDi,CDe"/>
<add key="U2140" name="UNSC Yemen" url="https://scsanctions.un.org/n9521en-yemen.xml" active="1" field1="YEi,YEe"/>
<add key="U2048" name="UNSC GB" url="https://scsanctions.un.org/61hj8en-gb.xml" active="1" field1="GBi,GBe"/>
<add key="U2374" name="UNSC Mali" url="https://scsanctions.un.org/h5k77en-mali.xml" active="1" field1="MLi,MLe"/>
</SDNListSetting> </SDNListSetting>
</SDNListSection> </SDNListSection>
<PartnerAgentSection> <PartnerAgentSection>
<PartnerAgentConfig> <PartnerAgentConfig>
<add key="394132" name="DONGA" username="" password="" field1="" />
<add key="393880" name="JMENEPAL" username="" password="" field1="" />
<add key="394130" name="TRANSFAST" username="" password="" field1="" />
<add key="394132" name="DONGA" username="" password="" field1=""/>
<add key="393880" name="JMENEPAL" username="" password="" field1=""/>
<add key="394130" name="TRANSFAST" username="" password="" field1=""/>
</PartnerAgentConfig> </PartnerAgentConfig>
</PartnerAgentSection> </PartnerAgentSection>
</CustomSection> </CustomSection>
<system.web> <system.web>
<httpRuntime maxRequestLength="1048576" enableVersionHeader="false" targetFramework="4.5" />
<httpRuntime maxRequestLength="1048576" enableVersionHeader="false" targetFramework="4.5"/>
<!--<httpRuntime requestValidationMode="2.0" />--> <!--<httpRuntime requestValidationMode="2.0" />-->
<sessionState timeout="20" />
<sessionState timeout="20"/>
<compilation debug="true" targetFramework="4.6.1"> <compilation debug="true" targetFramework="4.6.1">
<assemblies> <assemblies>
<add assembly="System.Web.Extensions.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Web.Extensions.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
<add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
</assemblies> </assemblies>
</compilation> </compilation>
<authentication mode="Windows" />
<authorization />
<authentication mode="Windows"/>
<authorization/>
<profile> <profile>
<providers> <providers>
<clear />
<clear/>
</providers> </providers>
</profile> </profile>
</system.web> </system.web>
<appSettings> <appSettings>
<add key="JMECoreAPIURL" value="http://77.68.26.191:2082/" />
<add key="JMECoreAPIURL" value="http://77.68.26.191:2082/"/>
<!--<add key="JMECoreAPIURL" value="http://localhost:65345/" />--> <!--<add key="JMECoreAPIURL" value="http://localhost:65345/" />-->
<add key="JMECoreAPI_HeaderToken" value="KPb1ttRs3CJnORpVU8SmAKUs7a42vtvjzQ47gU0b4u0vxAEI0PgZref6puzkVhLTX2PRNMGCbnb2TglupsjV5AGhYvw8a8POTcUcFSrEdHmTkhkIGNvUvxSpKjUOXGFQWaGU1bxoqqUSaFOmNE5zGojVmwPoMy38CNLwnpQKjdsIuxCKGCApa2gWHJl9gebmIpUODv9jAZgmMEaXqyR4CLg4iSksfTyYNjdqxEE88P5THYt5GuNk8Ti6K2RxIKfPWY49hBOpiYnXcApgSDiKFYqQG9WuZ7cvDGJIWg5WgWKjGle8Y3OydhONXVkN5OMPXDA4VZkK4c5nM363Zkg4w4qdzWuwhsEoAwU4rej6sMRZue3L0BowBJja1OK0iPoTX70EexX8rviMLOZPUDwhxzkL3eODS69VEEbjHb8WSjhho5h3KnCE4tcqCWihwSZ8Yuyhw1rzIMNw2C8pN1GEJyXc6goIFkf7dmK9ynJSxu52D9GjOkKqoD7dFNFulOFVfgeCuhPDYG2A2c2RSvGHv24VDXvmGVaAMLiPtsTz5oD8f0na7fX1xGg0Qveh0KgQL5THnrMK6gm5Ky7O8nbecIxY" />
<add key="JMECoreAPI_HeaderToken" value="KPb1ttRs3CJnORpVU8SmAKUs7a42vtvjzQ47gU0b4u0vxAEI0PgZref6puzkVhLTX2PRNMGCbnb2TglupsjV5AGhYvw8a8POTcUcFSrEdHmTkhkIGNvUvxSpKjUOXGFQWaGU1bxoqqUSaFOmNE5zGojVmwPoMy38CNLwnpQKjdsIuxCKGCApa2gWHJl9gebmIpUODv9jAZgmMEaXqyR4CLg4iSksfTyYNjdqxEE88P5THYt5GuNk8Ti6K2RxIKfPWY49hBOpiYnXcApgSDiKFYqQG9WuZ7cvDGJIWg5WgWKjGle8Y3OydhONXVkN5OMPXDA4VZkK4c5nM363Zkg4w4qdzWuwhsEoAwU4rej6sMRZue3L0BowBJja1OK0iPoTX70EexX8rviMLOZPUDwhxzkL3eODS69VEEbjHb8WSjhho5h3KnCE4tcqCWihwSZ8Yuyhw1rzIMNw2C8pN1GEJyXc6goIFkf7dmK9ynJSxu52D9GjOkKqoD7dFNFulOFVfgeCuhPDYG2A2c2RSvGHv24VDXvmGVaAMLiPtsTz5oD8f0na7fX1xGg0Qveh0KgQL5THnrMK6gm5Ky7O8nbecIxY"/>
<!-- Stagin DB Connection --> <!-- Stagin DB Connection -->
<add key="connectionString" value="server=77.68.15.91\MSSQLSERVER01,1434;Database=FastMoneyPro_Account;uid=sa;pwd=DbAmin123" /> <add key="connectionString" value="server=77.68.15.91\MSSQLSERVER01,1434;Database=FastMoneyPro_Account;uid=sa;pwd=DbAmin123" />
<add key="RemittanceString" value="server=77.68.15.91\MSSQLSERVER01,1434;Database=FastMoneyPro_Remit;uid=sa;pwd=DbAmin123" /> <add key="RemittanceString" value="server=77.68.15.91\MSSQLSERVER01,1434;Database=FastMoneyPro_Remit;uid=sa;pwd=DbAmin123" />
<add key="tranNoName" value="JME No" />
<add key="root" value="D:\C# Projects\Personal\JME_Japan\WEB-CORE\Swift.web\" />
<add key="urlRoot" value="http://localhost:49640/" />
<add key="virtualDirName" value="" />
<add key="filePath" value="D:\C# Projects\Personal\JME_Japan\WEB-CORE\Swift.web\" />
<add key="gridWidth" value="700" />
<add key="gridHeight" value="-1" />
<add key="companyName" value="IME London (Subhida UK Ltd) Ltd.|Pentax House, South Hill Avenue, South Harrow, London, HA2 0DU." />
<add key="isMenuForLive" value="Y" />
<add key="fileSize" value="2097152" />
<add key="RemittanceString" value="server=77.68.15.91\MSSQLSERVER01,1434;Database=FastMoneyPro_Remit;uid=user_stag;pwd=P@ssw0rd"/>
<add key="tranNoName" value="JME No"/>
<add key="root" value="D:\C# Projects\Personal\JME_Japan\WEB-CORE\Swift.web\"/>
<add key="urlRoot" value="http://localhost:49640/"/>
<add key="virtualDirName" value=""/>
<add key="filePath" value="D:\C# Projects\Personal\JME_Japan\WEB-CORE\Swift.web\"/>
<add key="gridWidth" value="700"/>
<add key="gridHeight" value="-1"/>
<add key="companyName" value="IME London (Subhida UK Ltd) Ltd.|Pentax House, South Hill Avenue, South Harrow, London, HA2 0DU."/>
<add key="isMenuForLive" value="Y"/>
<add key="fileSize" value="2097152"/>
<!--<add key="reportPageSize" value="100" />--> <!--<add key="reportPageSize" value="100" />-->
<add key="defaultDocPath" value="D:\GME\Documents\" />
<add key="customerDocPath" value="D:\" />
<add key="customerDocFileExtension" value=".jpeg,.png,.jpg" />
<add key="IntlAPISuperAgentId" value="1038" />
<add key="IntlSuperAgentId" value="393877" />
<add key="domesticSuperAgentId" value="1009" />
<add key="domesticCountryId" value="113" />
<add key="hoAgentId" value="" />
<add key="reportPageSize" value="100" />
<add key="defaultDocPath" value="D:\GME\Documents\"/>
<add key="customerDocPath" value="D:\"/>
<add key="customerDocFileExtension" value=".jpeg,.png,.jpg"/>
<add key="IntlAPISuperAgentId" value="1038"/>
<add key="IntlSuperAgentId" value="393877"/>
<add key="domesticSuperAgentId" value="1009"/>
<add key="domesticCountryId" value="113"/>
<add key="hoAgentId" value=""/>
<add key="reportPageSize" value="100"/>
<!--Best Remit API Data--> <!--Best Remit API Data-->
<add key="bestPartnerId" value="BRNNP9810" />
<add key="bestUserName" value="GMESendAPI" />
<add key="bestPwd" value="gmesend123" />
<add key="bestPartnerId" value="BRNNP9810"/>
<add key="bestUserName" value="GMESendAPI"/>
<add key="bestPwd" value="gmesend123"/>
<!--GIBL API--> <!--GIBL API-->
<add key="gblpayagentcode" value="14" />
<add key="gbluserid" value="gmexchanasdge" />
<add key="gblpassword" value="123456asd" />
<add key="gblCertPath" value="E:\C# Project\Live_systems\FastRemit_Live\APP\Swift.web\Certificates\GlobalRemit\bestpay.globalremit.p12" />
<add key="gblpayagentcode" value="14"/>
<add key="gbluserid" value="gmexchanasdge"/>
<add key="gblpassword" value="123456asd"/>
<add key="gblCertPath" value="E:\C# Project\Live_systems\FastRemit_Live\APP\Swift.web\Certificates\GlobalRemit\bestpay.globalremit.p12"/>
<!--CSV maximu file Size 2MB --> <!--CSV maximu file Size 2MB -->
<add key="csvFileSize" value="2097152" />
<add key="csvFileSize" value="2097152"/>
<!--IMPORT OFAC Data--> <!--IMPORT OFAC Data-->
<add key="OFAC_SDN" value="https://www.treasury.gov/ofac/downloads/consolidated/cons_prim.pip" />
<add key="OFAC_ALT" value="https://www.treasury.gov/ofac/downloads/consolidated/cons_alt.pip" />
<add key="OFAC_ADD" value="https://www.treasury.gov/ofac/downloads/consolidated/cons_add.pip" />
<add key="OFAC_UNSCR" value="https://scsanctions.un.org/resources/xml/en/consolidated.xml" />
<add key="eto" value="180" />
<add key="OFAC_SDN" value="https://www.treasury.gov/ofac/downloads/consolidated/cons_prim.pip"/>
<add key="OFAC_ALT" value="https://www.treasury.gov/ofac/downloads/consolidated/cons_alt.pip"/>
<add key="OFAC_ADD" value="https://www.treasury.gov/ofac/downloads/consolidated/cons_add.pip"/>
<add key="OFAC_UNSCR" value="https://scsanctions.un.org/resources/xml/en/consolidated.xml"/>
<add key="eto" value="180"/>
<add key="methodType" value="loqate" /> <add key="methodType" value="loqate" />
<add key="verifyDocUpload" value="D:\TestUpload\" />
<add key="verifyDocUpload" value="D:\TestUpload\"/>
<!--Email Sending configurations--> <!--Email Sending configurations-->
<!--<add key="SendEmailId" value="support@japanremit.com" /> <!--<add key="SendEmailId" value="support@japanremit.com" />
<add key="SendEmailPwd" value="Lup82850@" /> <add key="SendEmailPwd" value="Lup82850@" />
<add key="SmtpServer" value="smtp.office365.com" /> <add key="SmtpServer" value="smtp.office365.com" />
<add key="SmtpPort" value="587" />--> <add key="SmtpPort" value="587" />-->
<add key="SendEmailId" value="" />
<add key="SendEmailPwd" value="" />
<add key="SmtpServer" value="smtp.office365.com" />
<add key="SmtpPort" value="587" />
<add key="SendEmailId" value=""/>
<add key="SendEmailPwd" value=""/>
<add key="SmtpServer" value="smtp.office365.com"/>
<add key="SmtpPort" value="587"/>
<!--Push Nofitication http://10.1.1.110:9993--> <!--Push Nofitication http://10.1.1.110:9993-->
<add key="pushNotificationUrl" value="http://localhost:3824/api/v1/notifications/push" />
<add key="pushNotificationUrl" value="http://localhost:3824/api/v1/notifications/push"/>
<!--Core API URL--> <!--Core API URL-->
<add key="coreApiBaseURL" value="http://localhost:65345/" />
<add key="coreApiBaseURL" value="http://localhost:65345/"/>
<!-- API PartnerId--> <!-- API PartnerId-->
<add key="transfast" value="394130" />
<add key="jmeNepal" value="393880" />
<add key="donga" value="394132" />
<add key="transfast" value="394130"/>
<add key="jmeNepal" value="393880"/>
<add key="donga" value="394132"/>
<!-- END API PartnerId--> <!-- END API PartnerId-->
<!--Google 2 Factor Atuhentication--> <!--Google 2 Factor Atuhentication-->
<add key="GeoLocationIpInfoKey" value="51a166d9af16c06473e09ffc62f99e33cbd75d915889b0aa89bf3af3c1141f22" />
<add key="2FAGoogle" value="IME@LondonSubhidha@" />
<add key="UseGoogle2FAuthAgent" value="N" />
<add key="UseGoogle2FAuthAdmin" value="N" />
<add key="UseLocationAPI" value="N" />
<add key="keyForEncryptionDecryption" value="IME@Lond@pANt0kY0@R3m1TTaNc3YvClQmNDlEnc" />
<add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />
<add key="GeoLocationIpInfoKey" value="51a166d9af16c06473e09ffc62f99e33cbd75d915889b0aa89bf3af3c1141f22"/>
<add key="2FAGoogle" value="IME@LondonSubhidha@"/>
<add key="UseGoogle2FAuthAgent" value="N"/>
<add key="UseGoogle2FAuthAdmin" value="N"/>
<add key="UseLocationAPI" value="N"/>
<add key="keyForEncryptionDecryption" value="IME@Lond@pANt0kY0@R3m1TTaNc3YvClQmNDlEnc"/>
<add key="ValidationSettings:UnobtrusiveValidationMode" value="None"/>
<!--Email Validation--> <!--Email Validation-->
<add key="regex" value="\A(?:[a-z0-9!#$%&amp;'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&amp;'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?)\Z" />
<add key="regex" value="\A(?:[a-z0-9!#$%&amp;'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&amp;'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?)\Z"/>
<!--TrustPayment--> <!--TrustPayment-->
<add key="sitereference" value="test_subhidauk71992" />
<add key="sitePassword" value="BEe6nRraqNeUgkpI" />
<add key="sitereference" value="test_subhidauk71992"/>
<add key="sitePassword" value="BEe6nRraqNeUgkpI"/>
<!--<add key="sitereference" value="subhidaltd118185" /> <!--<add key="sitereference" value="subhidaltd118185" />
<add key="sitePassword" value="KbdgUeb047" />--> <add key="sitePassword" value="KbdgUeb047" />-->
<add key="encryptKey" value="39d37440c89b668fc422fbadcd541bb8" />
<add key="sitesuccessfulurlredirect" value="http://localhost:49640/payment/trans_payment_success.aspx" />
<add key="sitedeclinedurlredirect" value="http://localhost:49640/payment/trans_payment_decline.aspx" />
<add key="sitesuccess_back" value="http://localhost:49640//payment/STPaymentSuccess.aspx" />
<add key="sitefail_back" value="http://localhost:49640//payment/STPaymentFail.aspx" />
<add key="merchantemail" value="shakun@japanremit.com" />
<add key="trustpaymentCallback" value="http://localhost:49640/payment/STPaymentCustomerRedirect.aspx" />
<add key="CR_Trust_Receipt_url" value="http://localhost:49640/AgentNew/SendTxn/SendIntlReceipt.aspx" />
<add key="encryptKey" value="39d37440c89b668fc422fbadcd541bb8" />
<add key="encryptKey" value="39d37440c89b668fc422fbadcd541bb8"/>
<add key="sitesuccessfulurlredirect" value="http://localhost:49640/payment/trans_payment_success.aspx"/>
<add key="sitedeclinedurlredirect" value="http://localhost:49640/payment/trans_payment_decline.aspx"/>
<add key="sitesuccess_back" value="http://localhost:49640//payment/STPaymentSuccess.aspx"/>
<add key="sitefail_back" value="http://localhost:49640//payment/STPaymentFail.aspx"/>
<add key="merchantemail" value="shakun@japanremit.com"/>
<add key="trustpaymentCallback" value="http://localhost:49640/payment/STPaymentCustomerRedirect.aspx"/>
<add key="CR_Trust_Receipt_url" value="http://localhost:49640/AgentNew/SendTxn/SendIntlReceipt.aspx"/>
<add key="encryptKey" value="39d37440c89b668fc422fbadcd541bb8"/>
</appSettings> </appSettings>
<system.webServer> <system.webServer>
<security> <security>
<requestFiltering removeServerHeader="true"> <requestFiltering removeServerHeader="true">
<requestLimits maxAllowedContentLength="1073741824" />
<requestLimits maxAllowedContentLength="1073741824"/>
<verbs> <verbs>
<add verb="OPTIONS" allowed="false" />
<add verb="TRACE" allowed="false" />
<add verb="OPTIONS" allowed="false"/>
<add verb="TRACE" allowed="false"/>
</verbs> </verbs>
</requestFiltering> </requestFiltering>
</security> </security>
<modules runAllManagedModulesForAllRequests="true" />
<modules runAllManagedModulesForAllRequests="true"/>
<defaultDocument> <defaultDocument>
<files> <files>
<clear />
<add value="default.aspx" />
<add value="Default.htm" />
<add value="Default.asp" />
<add value="index.htm" />
<add value="index.html" />
<add value="iisstart.htm" />
<add value="index.php" />
<clear/>
<add value="default.aspx"/>
<add value="Default.htm"/>
<add value="Default.asp"/>
<add value="index.htm"/>
<add value="index.html"/>
<add value="iisstart.htm"/>
<add value="index.php"/>
</files> </files>
</defaultDocument> </defaultDocument>
<directoryBrowse enabled="false" />
<directoryBrowse enabled="false"/>
<httpCompression directory="%SystemDrive%\inetpub\temp\IIS Temporary Compressed Files"> <httpCompression directory="%SystemDrive%\inetpub\temp\IIS Temporary Compressed Files">
<scheme name="gzip" dll="%Windir%\system32\inetsrv\gzip.dll" />
<scheme name="gzip" dll="%Windir%\system32\inetsrv\gzip.dll"/>
<dynamicTypes> <dynamicTypes>
<add mimeType="text/*" enabled="true" />
<add mimeType="message/*" enabled="true" />
<add mimeType="application/javascript" enabled="true" />
<add mimeType="*/*" enabled="false" />
<add mimeType="text/*" enabled="true"/>
<add mimeType="message/*" enabled="true"/>
<add mimeType="application/javascript" enabled="true"/>
<add mimeType="*/*" enabled="false"/>
</dynamicTypes> </dynamicTypes>
<staticTypes> <staticTypes>
<add mimeType="text/*" enabled="true" />
<add mimeType="message/*" enabled="true" />
<add mimeType="application/javascript" enabled="true" />
<add mimeType="*/*" enabled="false" />
<add mimeType="text/*" enabled="true"/>
<add mimeType="message/*" enabled="true"/>
<add mimeType="application/javascript" enabled="true"/>
<add mimeType="*/*" enabled="false"/>
</staticTypes> </staticTypes>
</httpCompression> </httpCompression>
<httpProtocol allowKeepAlive="true"> <httpProtocol allowKeepAlive="true">
<customHeaders> <customHeaders>
<!-- prevent mime based attacks --> <!-- prevent mime based attacks -->
<add name="X-Content-Type-Options" value="nosniff" />
<add name="X-Content-Type-Options" value="nosniff"/>
<!-- Referrer will be sent only for same origin site. Prevents from leaking referrer data over insecure connections --> <!-- Referrer will be sent only for same origin site. Prevents from leaking referrer data over insecure connections -->
<add name="Referrer-Policy" value="same-origin" />
<add name="Referrer-Policy" value="same-origin"/>
<!-- Set features of the site uses or not. --> <!-- Set features of the site uses or not. -->
<add name="Permissions-Policy" value="accelerometer=(),camera=(), gyroscope=(), magnetometer=(), microphone=(), payment=(), usb=()" />
<add name="Permissions-Policy" value="accelerometer=(),camera=(), gyroscope=(), magnetometer=(), microphone=(), payment=(), usb=()"/>
<!--ensure their browsers always connect to a website over HTTPS. Protects against Clickjacking attacks. --> <!--ensure their browsers always connect to a website over HTTPS. Protects against Clickjacking attacks. -->
<add name="Strict-Transport-Security" value="max-age=31536000; includeSubDomains; " />
<add name="Strict-Transport-Security" value="max-age=31536000; includeSubDomains; "/>
<!-- enable Cross-site scripting (XSS). Protects against XSS injections. --> <!-- enable Cross-site scripting (XSS). Protects against XSS injections. -->
<add name="X-Xss-Protection" value="1; mode=block" />
<add name="X-Xss-Protection" value="1; mode=block"/>
<!-- prevent clickjacking attacks--> <!-- prevent clickjacking attacks-->
<add name="X-Frame-Options" value="SAMEORIGIN" />
<add name="X-Frame-Options" value="SAMEORIGIN"/>
<!-- CSP modern XSS directive-based defence --> <!-- CSP modern XSS directive-based defence -->
<add name="Content-Security-Policy" value="default-src 'self'; connect-src *; font-src *; frame-src *; img-src * blob: data:; media-src *; object-src *; script-src * 'unsafe-inline' 'unsafe-eval'; style-src * 'unsafe-inline';" />
<add name="Content-Security-Policy" value="default-src 'self'; connect-src *; font-src *; frame-src *; img-src * blob: data:; media-src *; object-src *; script-src * 'unsafe-inline' 'unsafe-eval'; style-src * 'unsafe-inline';"/>
<!-- remove display technology that's supporting the Web Server --> <!-- remove display technology that's supporting the Web Server -->
<remove name="X-Powered-By" />
<remove name="Server" />
<remove name="X-AspNet-Version" />
<remove name="X-Powered-By"/>
<remove name="Server"/>
<remove name="X-AspNet-Version"/>
<!---Disable caching for all static files. --> <!---Disable caching for all static files. -->
<add name="Cache-Control" value="no-cache, no-store" />
<add name="Pragma" value="no-cache" />
<add name="Expires" value="-1" />
<add name="Cache-Control" value="no-cache, no-store"/>
<add name="Pragma" value="no-cache"/>
<add name="Expires" value="-1"/>
</customHeaders> </customHeaders>
</httpProtocol> </httpProtocol>
</system.webServer> </system.webServer>
<runtime> <runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly> <dependentAssembly>
<assemblyIdentity name="System.Data.SQLite" publicKeyToken="db937bc2d44ff139" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-1.0.111.0" newVersion="1.0.111.0" />
<assemblyIdentity name="System.Data.SQLite" publicKeyToken="db937bc2d44ff139" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-1.0.111.0" newVersion="1.0.111.0"/>
</dependentAssembly> </dependentAssembly>
<dependentAssembly> <dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-13.0.0.0" newVersion="13.0.0.0" />
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-13.0.0.0" newVersion="13.0.0.0"/>
</dependentAssembly> </dependentAssembly>
<dependentAssembly> <dependentAssembly>
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0"/>
</dependentAssembly> </dependentAssembly>
<dependentAssembly> <dependentAssembly>
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.2" newVersion="4.0.1.2" />
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-4.0.1.2" newVersion="4.0.1.2"/>
</dependentAssembly> </dependentAssembly>
<dependentAssembly> <dependentAssembly>
<assemblyIdentity name="System.Security.Cryptography.Pkcs" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.2" newVersion="6.0.0.2" />
<assemblyIdentity name="System.Security.Cryptography.Pkcs" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-6.0.0.2" newVersion="6.0.0.2"/>
</dependentAssembly> </dependentAssembly>
<dependentAssembly> <dependentAssembly>
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" />
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0"/>
</dependentAssembly> </dependentAssembly>
<dependentAssembly> <dependentAssembly>
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
</dependentAssembly> </dependentAssembly>
<dependentAssembly> <dependentAssembly>
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
</dependentAssembly> </dependentAssembly>
</assemblyBinding> </assemblyBinding>
</runtime> </runtime>
Loading…
Cancel
Save