public void ReportView()
        {
            try
            {
                if (Session["DsDatosLocation"] != null)
                {
                    var dsDiseño    = new dsLocation();
                    var dsEjecucion = (DataSet)Session["DsDatosLocation"];

                    for (var i = 0; i < dsEjecucion.Tables[0].Rows.Count; i++)
                    {
                        var row = dsDiseño.SWIFT_LOCATIONS.NewRow();
                        row[0] = dsEjecucion.Tables[0].Rows[i]["CODE_WAREHOUSE"];
                        row[1] = dsEjecucion.Tables[0].Rows[i]["CODE_LOCATION"];
                        row[2] = dsEjecucion.Tables[0].Rows[i]["CLASSIFICATION_LOCATION"];
                        row[3] = dsEjecucion.Tables[0].Rows[i]["HALL_LOCATION"];
                        row[4] = dsEjecucion.Tables[0].Rows[i]["ALLOW_PICKING"];
                        dsDiseño.SWIFT_LOCATIONS.Rows.Add(row);
                    }
                    var reporte = new Report.ReportLocation {
                        DataSource = dsDiseño
                    };
                    Session["DSDISEÑOLOCATION"] = dsDiseño;
                    ASPxDocumentViewer1.Report  = reporte;
                    ASPxDocumentViewer1.DataBind();
                }
            }
            catch (Exception ex)
            {
                ScriptManager.RegisterStartupScript(this, GetType(), "ErrorText", "CallError('Error: " + ex.Message + "');", true);
            }
        }
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!ValidarConexionYUsuarioLogueado(sender))
            {
                return;
            }
            if (Session["DSDISEÑOLOCATION"] != null)
            {
                var reporte = new Report.ReportLocation {
                    DataSource = Session["DSDISEÑOLOCATION"]
                };
                ASPxDocumentViewer1.Report = reporte;
                ASPxDocumentViewer1.DataBind();
            }

            GetAllLocation();
        }