public static string Registrar(string letra)
        {
            if (((Usuario_LoginResult)HttpContext.Current.Session["Usuario"]) == null)
            {
                return("");
            }
            try

            {
                LetrasEmitidasWCFClient objItemWCF = new LetrasEmitidasWCFClient();
                var result = objItemWCF.CanjeAutomaticoLetras_Registrar(((Usuario_LoginResult)HttpContext.Current.Session["Usuario"]).nombreComercial, int.Parse(letra), ((Usuario_LoginResult)HttpContext.Current.Session["Usuario"]).nombres);
                return(result);
                //if (result == "")
                //{
                //    //Letra_Cargar(((Usuario_LoginResult)Session["Usuario"]).idEmpresa, dpInicio.SelectedDate.Value, dpFinal.SelectedDate.Value, cboEstado.Text);
                //    //txtLetras.Text = "";
                //    //txtLetras.Focus();
                //}
                //else
                //{
                //    ScriptManager.RegisterStartupScript(btnRegistrar, btnRegistrar.GetType(), "mykey2", "setTimeout(function(){mostrarMensaje('ERROR: " + result + "');},3000);", true);
                //    lblMensaje.Text = "ERROR: " + result;
                //    lblMensaje.CssClass = "mensajeError";
                //}
            }
            catch (Exception ex)
            {
                //rwmReporte.RadAlert(ex.Message, 300, 120, "Mensaje", "");
                return("ERROR: " + ex.Message);
                //lblMensaje.CssClass = "mensajeError";
            }
        }
        protected void btnRegistrar_Click(object sender, EventArgs e)
        {
            if (Session["Usuario"] == null)
            {
                ScriptManager.RegisterStartupScript(Page, this.GetType(), "mykey", "CancelEdit();", true);
            }

            try

            {
                LetrasEmitidasWCFClient objItemWCF = new LetrasEmitidasWCFClient();
                var result = objItemWCF.CanjeAutomaticoLetras_Registrar(((Usuario_LoginResult)HttpContext.Current.Session["Usuario"]).nombreComercial, int.Parse(txtLetras.Text), ((Usuario_LoginResult)HttpContext.Current.Session["Usuario"]).nombres);
                if (result == "")
                {
                    Letra_Cargar(((Usuario_LoginResult)Session["Usuario"]).idEmpresa, dpInicio.SelectedDate.Value, dpFinal.SelectedDate.Value, cboEstado.Text);
                    txtLetras.Text = "";
                    txtLetras.Focus();
                }
                else
                {
                    ScriptManager.RegisterStartupScript(btnRegistrar, btnRegistrar.GetType(), "mykey2", "setTimeout(function(){mostrarMensaje('ERROR: " + result + "');},3000);", true);
                    lblMensaje.Text     = "ERROR: " + result;
                    lblMensaje.CssClass = "mensajeError";
                }
            }
            catch (Exception ex)
            {
                //rwmReporte.RadAlert(ex.Message, 300, 120, "Mensaje", "");
                lblMensaje.Text = "ERROR: " + ex.Message;
                //lblMensaje.CssClass = "mensajeError";
            }
        }