Browse Source

numeric password for activate mobile

Ime-london-webcore
Leeza Baidar 6 months ago
parent
commit
289186d8eb
  1. 184
      Swift.web/MobileRemit/Admin/Operation/EditCustomerForActivation.aspx
  2. 80
      Swift.web/MobileRemit/Admin/Operation/EditCustomerForActivation.aspx.cs
  3. 58
      Swift.web/MobileRemit/Admin/Operation/EditCustomerForActivation.aspx.designer.cs

184
Swift.web/MobileRemit/Admin/Operation/EditCustomerForActivation.aspx

@ -5,7 +5,9 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<base id="Base1" target="_self" runat="server" />
<base id="Base1" target="_self" runat="server" />
<link href="/ui/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<link href="/ui/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<link href="/ui/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<link href="/ui/css/style.css" rel="stylesheet" />
<link href="/ui/font-awesome/css/font-awesome.min.css" rel="stylesheet" />
@ -31,7 +33,7 @@
$("#divOccupation").hide();
if ($("#occupation").val() === "11383") {
$("#divOccupation").show();
// $("#CVotherOccupation").show();
// $("#CVotherOccupation").show();
}
});
@ -117,6 +119,79 @@
var param = "width=825,height=500,resizable=1,status=1,toolbar=0,scrollbars=1,center=1";
PopUpWindow(url, param);
};
$(document).ready(function () {
$('#btnSearch').click(function () {
clearPopupData();
var zipCode = $('#zipCode').val();
if (zipCode == "" || zipCode == null) {
alert("Post Code cannot be empty");
return;
}
debugger;
$.ajax({
type: 'POST',
contentType: 'application/json; charset=utf-8',
url: 'EditCustomerForActivation.aspx/GetAddressByPostCode',
data: JSON.stringify({ zipCode: zipCode }),
dataType: 'json',
success: function (response) {
var data = JSON.parse(response.d);
$('#apiDataPopup').modal({ backdrop: 'static', keyboard: false }, 'show');
$('#apiDataBody tbody').empty();
if (data && data.Data && data.Data.Addresses) {
var addresses = data.Data.Addresses;
addresses.forEach(function (item, index) {
var row = $('<tr>');
row.append($('<td>').text(index + 1));
row.append($('<td>').text(item.Address1));
row.append($('<td>').text(item.Address2));
//var selectButton = $('<button>')
// .addClass('btn btn-primary')
// .text('Select')
// .click(function () {
// var selectedAddress1 = item.Address1;
// var selectedAddress2 = item.Address2;
// $('#txtAdditionalAddress').val(item.Address1);
// $('#city').val(item.Address2);
// $('#apiDataPopup').modal('hide');
// });
var selectButton = $('<button>')
.addClass('btn btn-primary')
.text('Select')
.click(function (e) {
var additionalAddress = item.Address1;
var city = item.Address2;
$('#hdnAdditionalAddress').val(additionalAddress);
$('#cityHidden').val(city);
$('#address1').val(additionalAddress);
$('#city').val(city);
$('#apiDataPopup').modal('hide');
e.preventDefault();
});
row.append($('<td>').append(selectButton));
$('#apiDataBody').append(row);
});
$('#apiDataPopup').modal('show');
} else {
console.error("Invalid response.");
}
},
error: function (error) {
console.error(error);
}
});
});
});
function IdTypeValidity() {
var senIdType = $("#<%=idType.ClientID%>").val();
if (senIdType == "") {
@ -183,7 +258,7 @@
$('#<%=txtCompanyName.ClientID%>').val(dr[0].firstName);
$('#<%=genderList.ClientID%>').val(dr[0].gender);
$('#<%=countryList.ClientID%>').val(dr[0].country);
$('#<%=addressLine1.ClientID%>').val(dr[0].address);
$('#<%=address1.ClientID%>').val(dr[0].address);
$('#<%=zipCode.ClientID%>').val(dr[0].zipCode);
$('#<%=city.ClientID%>').val(dr[0].city);
$('#<%=email.ClientID%>').val(dr[0].email);
@ -221,8 +296,8 @@
$('#<%=txtNameofAuthoPerson.ClientID%>').val(dr[0].nameOfAuthorizedPerson);
<%-- $('#<%=txtStreet.ClientID%>').val(dr[0].street);--%>
$('#<%=txtAdditionalAddress.ClientID%>').val(dr[0].additionalAddress);
$('#<%=txtsenderCityjapan.ClientID%>').val(dr[0].cityUnicode);
$('#<%=txtstreetJapanese.ClientID%>').val(dr[0].streetUnicode);
<%-- $('#<%=txtsenderCityjapan.ClientID%>').val(dr[0].cityUnicode);
$('#<%=txtstreetJapanese.ClientID%>').val(dr[0].streetUnicode);--%>
$('#<%=txtNameofEmployeer.ClientID%>').val(dr[0].nameOfEmployeer);
$('#<%=rbRemitanceAllowed.ClientID%> input[value=' + (dr[0].remittanceAllowed == true ? "Enabled" : "Disabled") + ']').attr('checked', 'checked');
@ -235,8 +310,8 @@
$('#<%=ddlnatureOfCompany.ClientID%>').val(dr[0].natureOfCompany);
$('#<%=ddlOrganizationType.ClientID%>').val(dr[0].organizationType);
$('#<%=ddlPosition.ClientID%>').val(dr[0].position);
$('#<%=ddlVisaStatus.ClientID%>').val(dr[0].visaStatus);
$('#<%=ddlState.ClientID%>').val(dr[0].state);
<%--$('#<%=ddlVisaStatus.ClientID%>').val(dr[0].visaStatus);--%>
<%--$('#<%=ddlState.ClientID%>').val(dr[0].state);--%>
$('#<%=ddlStateHidden.ClientID%>').val(dr[0].state);
$('#<%=cityHidden.ClientID%>').val(dr[0].city);
@ -264,15 +339,15 @@
}
}
}
function ValidateForm() {
var reqField = "occupationtxt";
if (ValidRequiredField(reqField) == false) {
return false;
}
return true;
function ValidateForm() {
var reqField = "occupationtxt";
if (ValidRequiredField(reqField) == false) {
return false;
}
return true;
}
function CheckFormValidation() {
var reqField = "";
var val = $("#<% =hdnCustomerId.ClientID%>").val();
@ -375,10 +450,10 @@
function GetAddressByZipCode() {
var zipCodeValue = $("#<%=zipCode.ClientID%>").val();
$("#txtState").val('');
$("#<%=txtStreet.ClientID%>").val('');
<%--$("#<%=txtStreet.ClientID%>").val('');--%>
$("#<%=city.ClientID%>").val('');
$("#<%=txtsenderCityjapan.ClientID%>").val('');
$("#<%=txtstreetJapanese.ClientID%>").val('');
<%--$("#<%=txtsenderCityjapan.ClientID%>").val('');
$("#<%=txtstreetJapanese.ClientID%>").val('');--%>
var zipCodePattern = /^\d{7}?$/;
test = zipCodePattern.test(zipCodeValue);
if (!test) {
@ -393,8 +468,8 @@
if (erd !== null) {
var dr = jQuery.parseJSON(erd);
if (erd == false) {
$("#<%=ddlState.ClientID%>").val('');
$("#<%=txtStreet.ClientID%>").val('');
<%--$("#<%=ddlState.ClientID%>").val('');--%>
<%-- $("#<%=txtStreet.ClientID%>").val('');--%>
$("#<%=city.ClientID%>").val('');
$("#<%=zipCode.ClientID%>").focus();
$("#<%=zipCode.ClientID%>").attr("style", "display:block; background:#FFCCD2");
@ -403,7 +478,7 @@
//$("#tempAddress").html(erd);
if (dr[0].errorCode == '0') {
$("#<%=ddlState.ClientID%>").val(dr[0].STATE_ID);
<%--$("#<%=ddlState.ClientID%>").val(dr[0].STATE_ID);--%>
$("#<%=ddlStateHidden.ClientID%>").val(dr[0].STATE_ID);
$("#<%=cityHidden.ClientID%>").val(dr[0].CITY_NAME);
$("#<%=txtstreetJapanese.ClientID%>").val(dr[0].STREET_NAME);
@ -411,8 +486,8 @@
PopulateAreaDDL(dr);
}
else {
$("#<%=ddlState.ClientID%>").val('');
$("#<%=txtStreet.ClientID%>").val('');
<%--$("#<%=ddlState.ClientID%>").val('');--%>
<%-- $("#<%=txtStreet.ClientID%>").val('');--%>
$("#<%=city.ClientID%>").val('');
$("#<%=txtstreetJapanese.ClientID%>").val('');
$("#<%=zipCode.ClientID%>").focus();
@ -441,8 +516,8 @@
if (erd !== null) {
var dr = jQuery.parseJSON(erd);
if (erd == false) {
$("#<%=ddlState.ClientID%>").val('');
$("#<%=txtStreet.ClientID%>").val('');
<%-- $("#<%=ddlState.ClientID%>").val('');--%>
<%-- $("#<%=txtStreet.ClientID%>").val('');--%>
$("#<%=city.ClientID%>").val('');
$("#<%=txtstreetJapanese.ClientID%>").val('');
$("#<%=zipCode.ClientID%>").focus();
@ -452,17 +527,17 @@
//$("#tempAddress").html(erd);
if (dr[0].errorCode == '0') {
$("#<%=ddlState.ClientID%>").val(dr[0].STATE_ID);
<%-- $("#<%=ddlState.ClientID%>").val(dr[0].STATE_ID);--%>
$("#<%=ddlStateHidden.ClientID%>").val(dr[0].STATE_ID);
$("#<%=cityHidden.ClientID%>").val(dr[0].CITY_NAME);
$("#<%=cityHidden.ClientID%>").val(dr[0].CITY_NAME);
$("#<%=txtstreetJapanese.ClientID%>").val(dr[0].STREET_NAME);
//$("#<%=txtStreet.ClientID%>").val(dr[0].STREET_NAME);
<%--$("#<%=txtStreet.ClientID%>").val(dr[0].STREET_NAME);--%>
$("#<%=city.ClientID%>").val(dr[0].CITY_NAME);
PopulateAreaDDL(dr, rowId);
}
else {
$("#<%=ddlState.ClientID%>").val('');
$("#<%=txtStreet.ClientID%>").val('');
<%--$("#<%=ddlState.ClientID%>").val('');--%>
<%--$("#<%=txtStreet.ClientID%>").val('');--%>
$("#<%=city.ClientID%>").val('');
$("#<%=zipCode.ClientID%>").focus();
$("#<%=zipCode.ClientID%>").attr("style", "display:block; background:#FFCCD2");
@ -567,7 +642,7 @@
<div class="panel panel-default clearfix m-b-20">
<div class="panel-heading">Customer Information</div>
<div class="panel-body">
<asp:ValidationSummary ID="ValidationSummary1" runat="server" ForeColor="Red" ValidationGroup="ActivateVG" ShowSummary="true"/>
<asp:ValidationSummary ID="ValidationSummary1" runat="server" ForeColor="Red" ValidationGroup="ActivateVG" ShowSummary="true" />
<div class="col-sm-12" id="msgDiv" runat="server" visible="false" style="background-color: red;">
<asp:Label ID="msgLabel" runat="server" ForeColor="White"></asp:Label>
</div>
@ -596,7 +671,7 @@
<label>Membership No:</label>
<asp:TextBox ID="txtMembershipId" runat="server" CssClass="form-control" />
</div>
</div>
<div class="col-md-4 col-sm-4" hidden>
<div class="form-group">
@ -709,17 +784,13 @@
</div>
<div class="col-md-4 col-sm-4">
<div class="form-group">
<label>Zip Code:<span class="errormsg">*</span> </label>
<asp:TextBox ID="zipCode" autocomplete="stopdoingthat" runat="server" placeholder="XXXXXXX" MaxLength="7" CssClass="form-control required" onchange="return GetAddressByZipCode();" />
<asp:RequiredFieldValidator ID="reqzipCode" ControlToValidate="zipCode" ValidationGroup="ActivateVG" ErrorMessage="Zip Code is Required!" runat="server" SetFocusOnError="true" CssClass="ErrMsg"></asp:RequiredFieldValidator>
</div>
</div>
<div class="col-md-4 col-sm-4">
<div class="form-group">
<label>State:<span class="errormsg">*</span></label>
<asp:DropDownList runat="server" ID="ddlState" disabled="disabled" CssClass="form-control required">
</asp:DropDownList>
<%-- <asp:RequiredFieldValidator ID="reqddlState" ControlToValidate="ddlState" ValidationGroup="ActivateVG" ErrorMessage=" State is Required!" runat="server" SetFocusOnError="true" CssClass="ErrMsg"></asp:RequiredFieldValidator>--%>
<label>Post Code:<span class="errormsg">*</span> </label>
<div class="input-group">
<asp:TextBox ID="zipCode" runat="server" placeholder="XXXXXXX" MaxLength="8" CssClass="form-control required" />
<span class="input-group-btn">
<button id="btnSearch" class="btn btn-primary m-t-25" type="button">Search</button>
</span>
</div>
</div>
</div>
@ -731,31 +802,30 @@
</div>
<div class="col-md-4 col-sm-4">
<div class="form-group">
<label>City/Ward:<span class="errormsg">*</span></label>
<asp:TextBox ID="city" ReadOnly="true" autocomplete="stopdoingthat" runat="server" disabled="disabled" placeholder="City" CssClass="form-control required" />
<label>City:<span class="errormsg">*</span></label>
<asp:TextBox ID="city" runat="server" placeholder="City" CssClass="form-control" />
</div>
</div>
<div class="col-md-4 col-sm-4">
<div class="form-group">
<label>Area:<span class="errormsg">*</span> </label>
<asp:DropDownList ID="txtStreet" runat="server" placeholder="Street" CssClass="form-control required" />
<%--<asp:RequiredFieldValidator ID="reqtxtStreet" ControlToValidate="txtStreet" ValidationGroup="ActivateVG" ErrorMessage="Area is Required!" runat="server" SetFocusOnError="true" CssClass="ErrMsg"></asp:RequiredFieldValidator>--%>
<%--<asp:TextBox ID="txtStreet" runat="server" placeholder="Street" CssClass="form-control required" />--%>
<label>Address 1:<span class="errormsg">*</span> </label>
<asp:TextBox ID="address1" runat="server" placeholder="Address 1" CssClass="form-control required" />
</div>
</div>
<div class="col-md-4 col-sm-4" style="display: none;">
<div class="col-md-4 col-sm-4">
<div class="form-group">
<label>Sender City-Japan:</label>
<asp:TextBox ID="txtsenderCityjapan" runat="server" placeholder="Sender City Japan" CssClass="form-control" />
<label>Address 2:</label>
<asp:TextBox ID="txtAdditionalAddress" runat="server" placeholder="Address 2" CssClass="form-control" />
</div>
</div>
<div class="col-md-4 col-sm-4">
<%--<div class="col-md-4 col-sm-4" style="display: none;">
<div class="form-group">
<label>Additional Address:<span class="errormsg">*</span> </label>
<asp:TextBox autocomplete="stopdoingthat" ID="txtAdditionalAddress" runat="server" placeholder="Additional address" CssClass="form-control required" />
<asp:RequiredFieldValidator ID="ReqtxtAdditionalAddress" ControlToValidate="txtAdditionalAddress" ValidationGroup="ActivateVG" ErrorMessage="Additional Address is Required!" runat="server" SetFocusOnError="true" CssClass="ErrMsg"></asp:RequiredFieldValidator>
</div>
</div>
</div>--%>
<div class="col-md-4 col-sm-4 hideForOrganisation">
<div class="form-group">
@ -817,14 +887,14 @@
</div>
</div>
<div class="col-md-4 col-sm-4 hideForOrganisation">
<%--<div class="col-md-4 col-sm-4 hideForOrganisation">
<div class="form-group">
<label>Visa Status<span class="errormsg">*</span></label>
<asp:DropDownList runat="server" ID="ddlVisaStatus" name="ddlVisaStatus" CssClass="form-control clearOnOrganisation required">
</asp:DropDownList>
</div>
<asp:RequiredFieldValidator ID="reqddlVisaStatus" ControlToValidate="ddlVisaStatus" ValidationGroup="ActivateVG" ErrorMessage="Visa Status is Required!" runat="server" SetFocusOnError="true" CssClass="ErrMsg"></asp:RequiredFieldValidator>
</div>
</div>--%>
<div class="col-md-4 col-sm-4 hideForOrganisation">
<div class="form-group">
<label>Employment Business Type:</label>
@ -849,7 +919,7 @@
<div class="form-group">
<label>Occupation (If Other only):<span class="errormsg">*</span></label>
<asp:TextBox runat="server" ID="occupationText" CssClass="form-control clearOnOrganisation"></asp:TextBox>
</div>
</div>
<div class="col-md-4 col-sm-4" style="display: none;">

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

@ -11,6 +11,15 @@ using System.Web;
using System.Web.Script.Serialization;
using System.Web.UI;
using Swift.API.Common.Helper;
using Swift.API.Common;
using Swift.API.Common.Enum;
using Newtonsoft.Json;
using Swift.API.TPAPIs;
using Swift.DAL.BL.System.Utility;
using Swift.API.ThirdPartyApiServices;
using System.Web.Services;
using Swift.API.Common.SyncModel;
namespace Swift.web.MobileRemit.Admin.Operation
{
public partial class EditCustomerForActivation : System.Web.UI.Page
@ -187,9 +196,9 @@ namespace Swift.web.MobileRemit.Admin.Operation
_sl.SetDDL(ref ddlOrganizationType, "EXEC proc_online_dropDownList @flag='dropdownList',@user='" + GetStatic.GetUser() + "',@parentId=7002", "valueId", "detailTitle", "", "Select..");
_sl.SetDDL(ref ddlnatureOfCompany, "EXEC proc_online_dropDownList @flag='dropdownList',@user='" + GetStatic.GetUser() + "',@parentId=7003", "valueId", "detailTitle", "", "Select..");
_sl.SetDDL(ref ddlEmployeeBusType, "EXEC proc_online_dropDownList @flag='dropdownList',@user='" + GetStatic.GetUser() + "',@parentId=7004", "valueId", "detailTitle", "", "");
_sl.SetDDL(ref ddlVisaStatus, "EXEC proc_online_dropDownList @flag='dropdownList',@user='" + GetStatic.GetUser() + "',@parentId=7005", "valueId", "detailTitle", "", "Select..");
//_sl.SetDDL(ref ddlVisaStatus, "EXEC proc_online_dropDownList @flag='dropdownList',@user='" + GetStatic.GetUser() + "',@parentId=7005", "valueId", "detailTitle", "", "Select..");
_sl.SetDDL(ref ddlPosition, "EXEC proc_online_dropDownList @flag='dropdownList',@user='" + GetStatic.GetUser() + "',@parentId=7006", "valueId", "detailTitle", "", "Select..");
_sl.SetDDL(ref ddlState, "EXEC proc_online_dropDownList @flag='state',@countryId='" + countryList.SelectedValue + "'", "stateId", "stateName", "", "Select..");
//_sl.SetDDL(ref ddlState, "EXEC proc_online_dropDownList @flag='state',@countryId='" + countryList.SelectedValue + "'", "stateId", "stateName", "", "Select..");
// _sdd.SetDDL(ref ddlSearchBy, "exec proc_sendPageLoadData @flag='search-cust-by'", "VALUE", "TEXT", "", "");
_sdd.SetStaticDdl(ref ddlDocType, "7009", "", "Select");
}
@ -242,12 +251,12 @@ namespace Swift.web.MobileRemit.Admin.Operation
AdditionalAddress = txtAdditionalAddress.Text,
city = cityHidden.Value,
state = ddlStateHidden.Value,
senderCityjapan = txtsenderCityjapan.Text,
//senderCityjapan = txtsenderCityjapan.Text,
email = email.Text,
streetJapanese = txtstreetJapanese.Text,
homePhone = phoneNumber.Text,
mobile = mobile.Text,
visaStatus = ddlVisaStatus.SelectedValue,
//visaStatus = ddlVisaStatus.SelectedValue,
employeeBusinessType = ddlEmployeeBusType.SelectedValue,
nativeCountry = nativeCountry.SelectedValue,
dob = dob.Text,
@ -294,11 +303,47 @@ namespace Swift.web.MobileRemit.Admin.Operation
if (dbResult.ErrorCode == "0")
{
// saveCustomerDocument(dbResult);
var custompass = PasswordGenerator.GenerateRandomPassword();
var custompass = PasswordGenerator.GenerateRandomNumericPassword();
var dbRes = _cd.ActivateMobileLogin(GetStatic.GetUser(), GetCustomerId(), custompass, Request.Form["membershipId"]);
GetStatic.AlertMessage(this, dbRes.Msg);
if (dbRes.ErrorCode == "0")
{
// DataRow result = _cd.GetDetailsWithPinNo(GetCustomerId(), GetStatic.GetUser());
// //CustomerDetails cd = _cd.GetUserDetails(selecteduserId);
// List<Mapping> bodyMappings = new List<Mapping>();
// bodyMappings.Add(new Mapping() { SValue = "CustomerName", SText = result["FullName"].ToString()});
// bodyMappings.Add(new Mapping() { SValue = "CustomerId", SText = GetCustomerId() });
// bodyMappings.Add(new Mapping() { SValue = "Address", SText = result["Address1"].ToString()});
// bodyMappings.Add(new Mapping() { SValue = "EMAIL_ID", SText = result["userName"].ToString() });
// bodyMappings.Add(new Mapping() { SValue = "Password", SText = result["password"].ToString() });
// bodyMappings.Add(new Mapping() { SValue = "Pin_No", SText = result["pinNo"].ToString() });
// SendNotificationRequestMobile request = new SendNotificationRequestMobile()
// {
// IsBulkNotification = false,
// UserName = result["userName"].ToString(),
// ProcessId = "KYC_Verification_Completed",
// ProviderId = NotifyTemplate.CUST_PWD_PIN.ToString(),
// NotificationTypeId = NOTIFICATION_TYPE.EMAIL.ToString(),
// Template = NotifyTemplate.CUST_PWD_PIN,
// Recipients = new List<RecipientViewModel>()
//{
// new RecipientViewModel()
// {
// NotificationContent = new NotificationDTO() {
// Body = JsonConvert.SerializeObject(bodyMappings),
// //Title will be set by mapping json
// },
// Address= result["userName"].ToString()
// }
//}
// };
// result = NotifierV2.SendNotification(request, NOTIFICATION_TYPE.EMAIL);
Response.Redirect("/MobileRemit/Admin/Operation/LetterForCustomerFromMobile.aspx?createdFrom=" + createdFrom + "&customerId=" + GetCustomerId() + "&membershipId=" + Request.Form["membershipId"] + "");
}
// Approve(sender, e, createdFrom, "approve");
@ -404,10 +449,33 @@ namespace Swift.web.MobileRemit.Admin.Operation
else
args.IsValid = true;
}
protected void occupation_SelectedIndexChanged(object sender, EventArgs e)
{
}
[WebMethod]
public static string GetAddressByPostCode(string zipCode)
{
var postCode = zipCode.ToUpper();
string ProcessId = Guid.NewGuid().ToString().Replace("-", "") + ":" + postCode;
string methodType = Utility.ReadWebConfig("methodType", "");
string countryName = "United Kingdom";
AddressRequest requestObj = new AddressRequest()
{
CountryIsoCode = countryName,
ProviderId = ProcessId,
MethodType = methodType,
TownName = postCode,
};
SyncStateCityTownService serviceObj = new SyncStateCityTownService();
var response = serviceObj.GetAddressList(requestObj);
string jsonResponse = JsonConvert.SerializeObject(response);
return jsonResponse;
}
}
}

58
Swift.web/MobileRemit/Admin/Operation/EditCustomerForActivation.aspx.designer.cs

@ -302,24 +302,6 @@ namespace Swift.web.MobileRemit.Admin.Operation
/// </remarks>
protected global::System.Web.UI.WebControls.TextBox zipCode;
/// <summary>
/// reqzipCode 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.RequiredFieldValidator reqzipCode;
/// <summary>
/// ddlState 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.DropDownList ddlState;
/// <summary>
/// txtstreetJapanese control.
/// </summary>
@ -339,22 +321,13 @@ namespace Swift.web.MobileRemit.Admin.Operation
protected global::System.Web.UI.WebControls.TextBox city;
/// <summary>
/// txtStreet 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.DropDownList txtStreet;
/// <summary>
/// txtsenderCityjapan control.
/// address1 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.TextBox txtsenderCityjapan;
protected global::System.Web.UI.WebControls.TextBox address1;
/// <summary>
/// txtAdditionalAddress control.
@ -365,15 +338,6 @@ namespace Swift.web.MobileRemit.Admin.Operation
/// </remarks>
protected global::System.Web.UI.WebControls.TextBox txtAdditionalAddress;
/// <summary>
/// ReqtxtAdditionalAddress 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.RequiredFieldValidator ReqtxtAdditionalAddress;
/// <summary>
/// genderList control.
/// </summary>
@ -491,24 +455,6 @@ namespace Swift.web.MobileRemit.Admin.Operation
/// </remarks>
protected global::System.Web.UI.WebControls.TextBox mobile;
/// <summary>
/// ddlVisaStatus 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.DropDownList ddlVisaStatus;
/// <summary>
/// reqddlVisaStatus 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.RequiredFieldValidator reqddlVisaStatus;
/// <summary>
/// ddlEmployeeBusType control.
/// </summary>

Loading…
Cancel
Save