Example #1
0
        private void populateModalPopupFields(int intIFA_ID)
        {
            clsSwitchFee oSwitchFee = new clsSwitchFee(intIFA_ID);

            ddlIFAList.SelectedValue   = oSwitchFee.propIFA_ID.ToString();
            ddlIFAList.Enabled         = false;
            txtAnnualFeeAmount.Text    = oSwitchFee.propAnnual_Fee.ToString();
            txtPerSwitchFeeAmount.Text = oSwitchFee.propPer_Switch_Fee.ToString();
            cboxAccessDenied.Checked   = oSwitchFee.propAccess_Denied;
        }
 private void populateModalPopupFields(int intIFA_ID)
 {
     clsSwitchFee oSwitchFee = new clsSwitchFee(intIFA_ID);
     
     ddlIFAList.SelectedValue = oSwitchFee.propIFA_ID.ToString();
     ddlIFAList.Enabled = false;
     txtAnnualFeeAmount.Text = oSwitchFee.propAnnual_Fee.ToString();
     txtPerSwitchFeeAmount.Text = oSwitchFee.propPer_Switch_Fee.ToString();
     cboxAccessDenied.Checked = oSwitchFee.propAccess_Denied;
 }