当前位置: 首页>>代码示例>>C#>>正文


C# tools.RemplazarCaracteresEnString方法代码示例

本文整理汇总了C#中Brainsbits.LLB.maestras.tools.RemplazarCaracteresEnString方法的典型用法代码示例。如果您正苦于以下问题:C# tools.RemplazarCaracteresEnString方法的具体用法?C# tools.RemplazarCaracteresEnString怎么用?C# tools.RemplazarCaracteresEnString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Brainsbits.LLB.maestras.tools的用法示例。


在下文中一共展示了tools.RemplazarCaracteresEnString方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Modificar

    private void Modificar()
    {
        cliente _cliente = new cliente(Session["idEmpresa"].ToString(), Session["USU_LOG"].ToString());
        tools _tools = new tools();

        decimal ID_EMPRESA = Convert.ToDecimal(HiddenField_ID_EMPRESA.Value);

        String ACTIVO = DropDownList_ACTIVO.SelectedValue.ToString();
        DateTime FCH_INGRESO = DateTime.Parse(TextBox_FCH_INGRESO.Text.Trim());
        String NIT_EMPRESA = TextBox_NIT_EMPRESA.Text.Trim();

        String ACT_ECO = null;
        if (String.IsNullOrEmpty(TextBox_DES_ACTIVIDAD.Text) == false)
        {
            ACT_ECO = _tools.RemplazarCaracteresEnString(TextBox_DES_ACTIVIDAD.Text.ToUpper().Trim());
        }

        String RAZ_SOCIAL = _tools.RemplazarCaracteresEnString(TextBox_RAZ_SOCIAL.Text.ToUpper().Trim());
        String DIR_EMP = _tools.RemplazarCaracteresEnString(TextBox_DIR_EMP.Text.ToUpper().Trim());
        String CIU_EMP = DropDownList_CIUDAD.SelectedValue.ToString();
        String TEL_EMP = _tools.RemplazarCaracteresEnString(TextBox_TEL_EMP.Text.ToUpper().Trim());

        List<cobertura> listaCiudadesSeleccionadas = new List<cobertura>();
        cobertura _coberturaParaLista;
        foreach (GridViewRow fila in GridView_COVERTURA.Rows)
        {
            _coberturaParaLista = new cobertura(Session["idEmpresa"].ToString());
            _coberturaParaLista.IDCIUDAD = fila.Cells[1].Text.Trim();
            listaCiudadesSeleccionadas.Add(_coberturaParaLista);
        }

        List<empresasRiesgos> listaRiesgosEmpresa = new List<empresasRiesgos>();
        empresasRiesgos _empresasRiesgosParaLista;
        foreach (DataRow fila in ((DataTable)Session["dt_GRID_RIESGOS"]).Rows)
        {
            _empresasRiesgosParaLista = new empresasRiesgos(Session["idEmpresa"].ToString(), Session["USU_LOG"].ToString());
            _empresasRiesgosParaLista.ID_EMPRESA = ID_EMPRESA;
            _empresasRiesgosParaLista.DESCRIPCION_RIESGO = fila["DESCRIPCION_RIESGO"].ToString();
            listaRiesgosEmpresa.Add(_empresasRiesgosParaLista);
        }

        String CUB_CIUDADES = "";
        int contador_filas = 0;
        foreach (cobertura fila in listaCiudadesSeleccionadas)
        {
            if (contador_filas <= 0)
            {
                CUB_CIUDADES = fila.IDCIUDAD;
            }
            else
            {
                CUB_CIUDADES += "," + fila.IDCIUDAD;
            }
            contador_filas += 1;
        }

        String NOM_REP_LEGAL = _tools.RemplazarCaracteresEnString(TextBox_NOM_REP_LEGAL.Text.ToUpper().Trim());
        String TIP_DOC_REP_LEGAL = DropDownList_TIP_CEDULA_REP_LEGAL_CLIENTE.SelectedValue;
        String CC_REP_LEGAL = TextBox_CC_REP_LEGAL.Text.Trim();
        String ID_CIU_CC_REP_LEGAL = null;
        if (DropDownList_TIP_CEDULA_REP_LEGAL_CLIENTE.SelectedValue == "CC")
        {
            ID_CIU_CC_REP_LEGAL = DropDownList_CIU_CC_REP_LEGAL.SelectedValue.ToString();
        }

        String CIU_ORG_NEG = DropDownList_CIUDAD_ORIGINO.SelectedValue.ToString();
        String TIPO_EMPRESA = DropDownList_TIPO_EMPRESA.SelectedValue.ToString();
        int NUM_EMPLEADOS = Convert.ToInt32(TextBox_NUM_EMPLEADOS.Text.Trim());

        String USU_ACTUAL = Session["USU_LOG"].ToString();

        String FAC_NAL = DropDownList_FAC_NAL.SelectedValue.ToString();

        Decimal ID_ALIANZA = 0;
        if (DropDownList_ALIANZA.SelectedIndex > 0)
        {
            ID_ALIANZA = Convert.ToDecimal(DropDownList_ALIANZA.SelectedValue);
        }

        int DIG_VER = Convert.ToInt32(TextBox_DIG_VER.Text.Trim());
        String EMP_ESTADO = DropDownList_EMP_ESTADO.SelectedValue.ToString();
        String EMP_EXC_IVA = DropDownList_EMP_EXC_IVA.SelectedValue.ToString();

        String TEL_EMP1;
        if (TextBox_TEL_EMP_1.Text.ToUpper() == "")
        {
            TEL_EMP1 = "Ninguno";
        }
        else
        {
            TEL_EMP1 = _tools.RemplazarCaracteresEnString(TextBox_TEL_EMP_1.Text.ToUpper().Trim());
        }

        String NUM_CELULAR;
        if (TextBox_CEL_EMP.Text.ToUpper().Trim() == "")
        {
            NUM_CELULAR = "Ninguno";
        }
        else
        {
//.........这里部分代码省略.........
开发者ID:jquirogadesarrollador,项目名称:Varu_V1,代码行数:101,代码来源:clientes.aspx.cs

示例2: seEjecutaAlPresionarBotonGuardar

    private void seEjecutaAlPresionarBotonGuardar()
    {
        tools _tools = new tools();
        SecureQueryString QueryStringSeguro;
        QueryStringSeguro = new SecureQueryString(_tools.byteParaQueryStringSeguro(), Request["data"]);

        String accion = QueryStringSeguro["accion"].ToString();

        capturarVariablesGlogales();
        condicionComercial _condicionComercial = new condicionComercial(Session["idEmpresa"].ToString(), Session["USU_LOG"].ToString());

        String FACTURA = obtenerDeUnCheckBox(CheckBox_FACTURA_NOMINA);

        String MOD_SOPORTE = DropDownList_MOD_SOPORTE.SelectedValue;
        String MOD_FACTURA = DropDownList_MOD_FACTURA.SelectedValue;

        Decimal AD_NOM = Convert.ToDecimal(TextBox_AD_NOM.Text);

        String SOLO_DEV = obtenerDeUnCheckBox(CheckBox_SOLO_DEV);

        Decimal AD_PENSION = Convert.ToDecimal(TextBox_AD_PENSION.Text);
        Decimal AD_SALUD = Convert.ToDecimal(TextBox_AD_SALUD.Text);
        Decimal AD_RIESGOS = Convert.ToDecimal(TextBox_AD_RIESGOS.Text);
        Decimal AD_APO_SENA = Convert.ToDecimal(TextBox_AD_APO_SENA.Text);
        Decimal AD_APO_ICBF = Convert.ToDecimal(TextBox_AD_APO_ICBF.Text);
        Decimal AD_APO_CAJA = Convert.ToDecimal(TextBox_AD_APO_CAJA.Text);

        Decimal AD_VACACIONES = Convert.ToDecimal(TextBox_AD_VACACIONES.Text);
        Decimal AD_CESANTIA = Convert.ToDecimal(TextBox_AD_CESANTIA.Text);
        Decimal AD_INT_CES = Convert.ToDecimal(TextBox_AD_INT_CES.Text);
        Decimal AD_PRIMA = Convert.ToDecimal(TextBox_AD_PRIMA.Text);
        Decimal AD_SEG_VID = Convert.ToDecimal(TextBox_AD_SEG_VID.Text);
        Boolean verificadorValoresPorcentajes = true;

        if (CheckBox_RET_VAC.Checked == false)
        {
            if (AD_VACACIONES == 0)
            {
                configurarMensajes(true, System.Drawing.Color.Red);
                Label_MENSAJE.Text = "ADVERTENCIA: El % para VACACIONES solo puede ir en CERO si esta seleccionado SE COBRA AL RETIRO.";
                verificadorValoresPorcentajes = false;
            }
        }

        if (CheckBox_RET_CES.Checked == false)
        {
            if (AD_CESANTIA == 0)
            {
                configurarMensajes(true, System.Drawing.Color.Red);
                Label_MENSAJE.Text = "ADVERTENCIA: El % para CESANTÍA solo puede ir en CERO si esta seleccionado SE COBRA AL RETIRO.";
                verificadorValoresPorcentajes = false;
            }
        }

        if (CheckBox_RET_INT_CES.Checked == false)
        {
            if (AD_INT_CES == 0)
            {
                configurarMensajes(true, System.Drawing.Color.Red);
                Label_MENSAJE.Text = "ADVERTENCIA: El % para INT CESANTÍA solo puede ir en CERO si esta seleccionado SE COBRA AL RETIRO.";
                verificadorValoresPorcentajes = false;
            }
        }

        if (CheckBox_RET_PRIM.Checked == false)
        {
            if (AD_PRIMA == 0)
            {
                configurarMensajes(true, System.Drawing.Color.Red);
                Label_MENSAJE.Text = "ADVERTENCIA: El % para PRIMA solo puede ir en CERO si esta seleccionado SE COBRA AL RETIRO.";
                verificadorValoresPorcentajes = false;
            }
        }

        if (verificadorValoresPorcentajes == true)
        {
            String SUB_PENSION = obtenerDeUnCheckBox(CheckBox_SUB_PENSION);
            String SUB_SALUD = obtenerDeUnCheckBox(CheckBox_SUB_SALUD);
            String SUB_RIESGO = obtenerDeUnCheckBox(CheckBox_SUB_RIESGO);
            String SUB_SENA = obtenerDeUnCheckBox(CheckBox_SUB_SENA);
            String SUB_ICBF = obtenerDeUnCheckBox(CheckBox_SUB_ICBF);
            String SUB_CAJA = obtenerDeUnCheckBox(CheckBox_SUB_CAJA);
            String SUB_VACACIONES = obtenerDeUnCheckBox(CheckBox_SUB_VACACIONES);
            String SUB_CESANTIAS = obtenerDeUnCheckBox(CheckBox_SUB_CESANTIAS);
            String SUB_INT_CES = obtenerDeUnCheckBox(CheckBox_SUB_INT_CES);
            String SUB_PRIMA = obtenerDeUnCheckBox(CheckBox_SUB_PRIMA);
            String SUB_SEG_VID = obtenerDeUnCheckBox(CheckBox_SUB_SEG_VID);

            String RET_VAC = obtenerDeUnCheckBox(CheckBox_RET_VAC);
            String RET_CES = obtenerDeUnCheckBox(CheckBox_RET_CES);
            String RET_INT_CES = obtenerDeUnCheckBox(CheckBox_RET_INT_CES);
            String RET_PRIM = obtenerDeUnCheckBox(CheckBox_RET_PRIM);

            int DIAS_VNC = Convert.ToInt32(TextBox_DIAS_VNC.Text);

            String REGIMEN = DropDownList_REGIMEN.SelectedValue;

            String OBS_FACT = _tools.RemplazarCaracteresEnString(TextBox_OBS_FACT.Text.Trim());

            String USU_CRE = Session["USU_LOG"].ToString();
//.........这里部分代码省略.........
开发者ID:jquirogadesarrollador,项目名称:Varu_Original,代码行数:101,代码来源:condicionesEconomicasEficiencia.aspx.cs

示例3: Guardar

    private void Guardar()
    {
        cliente _cliente = new cliente(Session["idEmpresa"].ToString(), Session["USU_LOG"].ToString());
        tools _tools = new tools();

        decimal ID_EMPRESA = 0;

        String ACTIVO = DropDownList_ACTIVO.SelectedValue.ToString();
        DateTime FCH_INGRESO = DateTime.Parse(TextBox_FCH_INGRESO.Text.Trim());
        String NIT_EMPRESA = TextBox_NIT_EMPRESA.Text.Trim();

        String ACT_ECO = null;
        if (String.IsNullOrEmpty(TextBox_DES_ACTIVIDAD.Text) == false)
        {
            ACT_ECO = _tools.RemplazarCaracteresEnString(TextBox_DES_ACTIVIDAD.Text.ToUpper().Trim());
        }

        String RAZ_SOCIAL = _tools.RemplazarCaracteresEnString(TextBox_RAZ_SOCIAL.Text.ToUpper().Trim());
        String DIR_EMP = _tools.RemplazarCaracteresEnString(TextBox_DIR_EMP.Text.ToUpper().Trim());
        String CIU_EMP = DropDownList_CIUDAD.SelectedValue.ToString();
        String TEL_EMP = _tools.RemplazarCaracteresEnString(TextBox_TEL_EMP.Text.ToUpper().Trim());

        List<cobertura> listaCiudadesSeleccionadas = new List<cobertura>();
        cobertura _coberturaParaLista;
        foreach (GridViewRow fila in GridView_COVERTURA.Rows)
        {
            _coberturaParaLista = new cobertura(Session["idEmpresa"].ToString());
            _coberturaParaLista.IDCIUDAD = fila.Cells[1].Text.Trim();
            listaCiudadesSeleccionadas.Add(_coberturaParaLista);
        }

        List<empresasRiesgos> listaRiesgosEmpresa = new List<empresasRiesgos>();
        empresasRiesgos _empresasRiesgosParaLista;
        foreach (DataRow fila in ((DataTable)Session["dt_GRID_RIESGOS"]).Rows)
        {
            _empresasRiesgosParaLista = new empresasRiesgos(Session["idEmpresa"].ToString(), Session["USU_LOG"].ToString());
            _empresasRiesgosParaLista.ID_EMPRESA = ID_EMPRESA;
            _empresasRiesgosParaLista.DESCRIPCION_RIESGO = fila["DESCRIPCION_RIESGO"].ToString();
            listaRiesgosEmpresa.Add(_empresasRiesgosParaLista);
        }

        String CUB_CIUDADES = "";
        int contador_filas = 0;
        foreach (cobertura fila in listaCiudadesSeleccionadas)
        {
            if (contador_filas <= 0)
            {
                CUB_CIUDADES = fila.IDCIUDAD;
            }
            else
            {
                CUB_CIUDADES += "," + fila.IDCIUDAD;
            }
            contador_filas += 1;
        }

        String NOM_REP_LEGAL = _tools.RemplazarCaracteresEnString(TextBox_NOM_REP_LEGAL.Text.ToUpper().Trim());
        String TIP_DOC_REP_LEGAL = DropDownList_TIP_CEDULA_REP_LEGAL_CLIENTE.SelectedValue;
        String CC_REP_LEGAL = TextBox_CC_REP_LEGAL.Text.Trim();
        String ID_CIU_CC_REP_LEGAL = null;
        if (DropDownList_TIP_CEDULA_REP_LEGAL_CLIENTE.SelectedValue == "CC")
        {
            ID_CIU_CC_REP_LEGAL = DropDownList_CIU_CC_REP_LEGAL.SelectedValue.ToString();
        }

        String CIU_ORG_NEG = DropDownList_CIUDAD_ORIGINO.SelectedValue.ToString();
        String TIPO_EMPRESA = DropDownList_TIPO_EMPRESA.SelectedValue.ToString();
        int NUM_EMPLEADOS = Convert.ToInt32(TextBox_NUM_EMPLEADOS.Text.Trim());

        String USU_ACTUAL = Session["USU_LOG"].ToString();

        String FAC_NAL = DropDownList_FAC_NAL.SelectedValue.ToString();

        Decimal ID_ALIANZA = 0;
        if (DropDownList_ALIANZA.SelectedIndex > 0)
        {
            ID_ALIANZA = Convert.ToDecimal(DropDownList_ALIANZA.SelectedValue);
        }

        int DIG_VER = Convert.ToInt32(TextBox_DIG_VER.Text.Trim());
        String EMP_ESTADO = DropDownList_EMP_ESTADO.SelectedValue.ToString();
        String EMP_EXC_IVA = DropDownList_EMP_EXC_IVA.SelectedValue.ToString();

        String TEL_EMP1;
        if (TextBox_TEL_EMP_1.Text.ToUpper() == "")
        {
            TEL_EMP1 = "Ninguno";
        }
        else
        {
            TEL_EMP1 = _tools.RemplazarCaracteresEnString(TextBox_TEL_EMP_1.Text.ToUpper().Trim());
        }

        String NUM_CELULAR;
        if (TextBox_CEL_EMP.Text.ToUpper().Trim() == "")
        {
            NUM_CELULAR = "Ninguno";
        }
        else
        {
//.........这里部分代码省略.........
开发者ID:jquirogadesarrollador,项目名称:Varu_Original,代码行数:101,代码来源:clientes.aspx.cs


注:本文中的Brainsbits.LLB.maestras.tools.RemplazarCaracteresEnString方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。