protected void btnsubmit_Click(object sender, EventArgs e)
        {
            Customer_Policy_Reg    cust_policy_reg    = new Customer_Policy_Reg();
            Customer_Policy_RegBLL cust_policy_regbll = new Customer_Policy_RegBLL();

            cust_policy_reg.Customer_id           = Convert.ToInt32(ddlCustApp.SelectedValue);
            cust_policy_reg.Policy_name           = txtPolicyName.Text;
            cust_policy_reg.Policy_company        = txtPolicyCompany.Text;
            cust_policy_reg.Date_of_booking       = DateTime.ParseExact(txtDobooking.Text, "yyyy-MM-dd", null);
            cust_policy_reg.Sum_assured           = txtsumAssured.Text;
            cust_policy_reg.Payment_mode          = txtPaymentMode.Text;
            cust_policy_reg.Login_Id              = Convert.ToInt64(Session["Login_id"].ToString());
            cust_policy_reg.Date_of_birth         = DateTime.ParseExact(txtDob.Text, "yyyy-MM-dd", null);
            cust_policy_reg.Height                = txtHeight.Text;
            cust_policy_reg.Weight                = txtWeight.Text;
            cust_policy_reg.Identification_mark   = txtIdentificationMarks.Text;
            cust_policy_reg.Nominee_name          = txtNomineeName.Text;
            cust_policy_reg.Nominee_relationship  = txtNomineeRelationship.Text;
            cust_policy_reg.Nominee_date_of_birth = DateTime.ParseExact(txtNomineedob.Text, "yyyy-MM-dd", null);
            cust_policy_reg.Contact_no            = txtContactno.Text;
            cust_policy_reg.Appointment_id        = Convert.ToInt64(ddlAppintId.SelectedValue);

            if (cust_policy_regbll.Save(cust_policy_reg))
            {
                txtstatus.Text = "Policy Register!!!";
            }
            else
            {
                txtstatus.Text = "Failed!!!";
            }
        }
        protected void ddlCustApp_SelectedIndexChanged(object sender, EventArgs e)
        {
            SqlDataSource2.SelectCommand = "select AppointmentId from Customer_app where Customer_id=" + ddlCustApp.SelectedItem.Value + "";

            Customer_Policy_RegBLL custbll = new Customer_Policy_RegBLL();



            ddlAppintId.DataSource     = SqlDataSource2;
            ddlAppintId.DataTextField  = "AppointmentId";
            ddlAppintId.DataValueField = "AppointmentId";
            ddlAppintId.DataBind();
            ddlAppintId.Items.Insert(0, "--SELECT--");
        }
Exemplo n.º 3
0
        protected void ddlCustApp_SelectedIndexChanged(object sender, EventArgs e)
        {
            SqlDataSource2.SelectCommand = "select AppointmentId from Customer_app where Customer_id=" + ddlCustApp.SelectedItem.Value + "";
            //ddlAppintId.DataBind();
            Customer_Policy_RegBLL custbll = new Customer_Policy_RegBLL();

            //  ddlAppintId.SelectedItem.Text.

            ddlAppintId.DataSource     = SqlDataSource2;
            ddlAppintId.DataTextField  = "AppointmentId";
            ddlAppintId.DataValueField = "AppointmentId";
            ddlAppintId.DataBind();
            ddlAppintId.Items.Insert(0, "--SELECT--");
            //Customer_Policy_Reg cust = custbll.GetPoilcyDetailsByAppointId(Convert.ToInt32(ddlAppintId.SelectedValue));
            //txtPolicyName.Text = cust.Policy_name;
        }
        protected void ddlAppintId_SelectedIndexChanged(object sender, EventArgs e)
        {
            Customer_Policy_RegBLL custbll = new Customer_Policy_RegBLL();
            Customer_Policy_Reg    cust    = custbll.GetPoilcyDetailsByAppointId(Convert.ToInt32(ddlAppintId.SelectedValue));

            if (cust.Appointment_id != null)
            {
                txtPolicyName.Text    = cust.Policy_name;
                txtPolicyCompany.Text = cust.Policy_company;
                txtDobooking.Text     = cust.Date_of_booking.ToString("MM-dd-yyyy");
                txtsumAssured.Text    = cust.Sum_assured;
                txtPaymentMode.Text   = cust.Payment_mode;
            }
            else
            {
                Response.Write("<script>alert('This Policy is Not Registered')</script>");
            }
        }