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.
 
 
 
 
 

30 lines
834 B

using Swift.web.Library;
using System;
namespace Swift.web.Remit.CreditRiskManagement.Reports
{
public partial class CreditSecurityRPT : System.Web.UI.Page
{
public RemittanceLibrary _sl = new RemittanceLibrary();
private const string ViewFunctionId = "20181800";
protected void Page_Load(object sender, EventArgs e)
{
Authenticate();
txtDate.ReadOnly = true;
}
private void Authenticate()
{
_sl.CheckAuthentication(ViewFunctionId);
}
protected void securitytype_SelectedIndexChanged(object sender, EventArgs e)
{
if (securitytype.Text == "bg" || securitytype.Text == "fd")
isexpiry.Visible = true;
else
isexpiry.Visible = false;
}
}
}