Example #1
0
        protected void btn_receptdata_Click(object sender, EventArgs e)
        {
            //  txt_payer.Text = "NAME";

            List <USP_Licensing_GetPayerNameResult> name = Licensing_Details.Get_PayerName(Convert.ToInt32(hfdpid.Value));

            txt_payer.Text          = name[0].PayerName;
            txt_datepaid.Text       = DateTime.Now.ToString("MM/dd/yyyy");
            dlistAmtOwed.DataSource = Person_Details.Licensing_Details.Get_AmountOwedData(hfdselfeeids.Value);
            dlistAmtOwed.DataBind();

            ScriptManager.RegisterStartupScript(this, GetType(), "js", "<script>Popup();</script>", false);
        }