//private bool validation() //{ // bool a = VC.DropDownValidation(DepartmentDDList); // if (a == false) // { // return true; // } // else // { // return false; // } //} private bool validation(DropDownList DDL) { bool b = VC.DropDownValidation(DDL); if (b == true) { this.Page.ClientScript.RegisterStartupScript(this.GetType(), "ex", "alert('" + ex.Message + "');", true); return(true); } else { this.Page.ClientScript.RegisterStartupScript(this.GetType(), "ex", "alert('" + ex.Message + "');", true); return(false); } }