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.
 
 
 
 
 

28 lines
909 B

using Swift.web.Library;
using System;
namespace Swift.web.AccountReport.AgentSummary
{
public partial class AgentSummeryReport : System.Web.UI.Page
{
private RemittanceLibrary _remitLib = new RemittanceLibrary();
private const string ViewFunctionId = "20140200";
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
_remitLib.CheckAuthentication(ViewFunctionId);
agentGroupDDL.Attributes["onchange"] = "SetValue();";
asOnDate.Text = DateTime.Now.ToString("d");
asOnDate.Attributes.Add("readonly", "readonly");
PopulateDDL();
}
}
private void PopulateDDL()
{
_remitLib.SetDDL(ref agentGroupDDL, "EXEC Proc_dropdown_remit @flag='AGroup'", "valueId", "detailTitle", "", "");
}
}
}