• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C# WSGestion.WSGestion类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中WSGestion.WSGestion的典型用法代码示例。如果您正苦于以下问题:C# WSGestion.WSGestion类的具体用法?C# WSGestion.WSGestion怎么用?C# WSGestion.WSGestion使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



WSGestion.WSGestion类属于命名空间,在下文中一共展示了WSGestion.WSGestion类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: btn_asignar_ServerClick

        protected void btn_asignar_ServerClick(object sender, EventArgs e)
        {
            if ((codigo_seleccionado_centro != 0) && (codigo_seleccionado_medico !=0))
            {
                try
                {
                    WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
                    wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
                    WSGestion.MOD_Centro_Medico_Veterinario obj = new WSGestion.MOD_Centro_Medico_Veterinario();

                    obj.CME_id_centro_atencion = codigo_seleccionado_centro;
                    obj.CME_id_medico_veterinario = codigo_seleccionado_medico;
                    obj.CME_activo = "";

                    wsgest.CRE_Centro_Medico_Veterinario(obj);
                    Carga_Grid_Asignado();
                }
                catch (Exception exc)
                {
                    Alert_Mensaje.Attributes["class"] = "alert alert-danger";
                    mensaje_alerta = exc.ToString();
                    titulo_mensaje_alerta = "Error: ";
                    Alert_Mensaje.Visible = true;
                }
            }
            else
            {
                Alert_Mensaje.Attributes["class"] = "alert alert-danger";
                mensaje_alerta = "Debe de seleccionar un Centro de Atención y Médico Veterinario";
                titulo_mensaje_alerta = "Error: ";
                Alert_Mensaje.Visible = true;
            }
        }
开发者ID:juahidma,项目名称:petnet-web,代码行数:33,代码来源:frm_Asignacion_Medico_Centro.aspx.cs


示例2: lbkUsuarios_Click

 protected void lbkUsuarios_Click(object sender, EventArgs e)
 {
     WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
     wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
     Response.Redirect("frm_Home.aspx");
     Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Viene"] = null;
 }
开发者ID:juahidma,项目名称:petnet-web,代码行数:7,代码来源:rpt_Salida_Inventario.aspx.cs


示例3: Page_Load

 protected void Page_Load(object sender, EventArgs e)
 {
     WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
     wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
     if (Session[wsgest.Get_usu_id_session(Session.SessionID.ToString()) + "Codigo"] == null)
     {
         Response.Redirect("frm_Index.aspx");
     }
     if (Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"FormAccion"] != null)
     {
         FormAccion = Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"FormAccion"].ToString();
     }
     if (Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Centro"] != null)
     {
         centro = Convert.ToInt32(Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Centro"]);
     }
     if (Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Codigo_Select"] != null)
     {
         codigo_seleccionado = Convert.ToInt32(Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Codigo_Select"]);
     }
     if (Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Codigo_Select_Dueno"] != null)
     {
         codigo_seleccionado_dueno = Convert.ToInt32(Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Codigo_Select_Dueno"]);
     }
     if (!IsPostBack)
     {
         Cargar();
         Carga_Detallle();
     }
 }
开发者ID:juahidma,项目名称:petnet-web,代码行数:30,代码来源:frm_Reporte_Expediente_Imprimir.aspx.cs


示例4: btn_agregar_Click

 protected void btn_agregar_Click(object sender, EventArgs e)
 {
     WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
     wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
     if ((txt_articulo.Value != "") && (txt_articulo.Value != "NONE")&&(txt_cantidad.Value != "0") && (txt_cantidad.Value != ""))
     {
         buscar = txt_articulo.Value;
         Carga_Lineas();
         if (Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Error"] != null)
         {
             Alert_Mensaje.Attributes["class"] = "alert alert-danger";
             mensaje_alerta = Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Error"].ToString();
             titulo_mensaje_alerta = "Error: ";
             Alert_Mensaje.Visible = true;
             Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Error"] = null;
         }
         txt_cantidad.Value = "1";
         txt_articulo.Value = "";
     }
     else
     {
         Alert_Mensaje.Attributes["class"] = "alert alert-warning";
         mensaje_alerta = "No se ha digitado ningún código de artículo o cantidad inválida";
         titulo_mensaje_alerta = "Advertencia: ";
         Alert_Mensaje.Visible = true;
     }
 }
开发者ID:juahidma,项目名称:petnet-web,代码行数:27,代码来源:frm_Ejecutar_Cita.aspx.cs


示例5: btn_certificado_ServerClick

        protected void btn_certificado_ServerClick(object sender, EventArgs e)
        {
            try
            {
                if (codigo_seleccionado == 0)
                {
                    Alert_Mensaje.Attributes["class"] = "alert alert-warning";
                    mensaje_alerta = "No se ha seleccionado ningún registro";
                    titulo_mensaje_alerta = "Advertencia: ";
                    Alert_Mensaje.Visible = true;
                }
                else
                {
                    WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
                    wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");

                    Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Codigo_Select_Dueno"] = wsgest.SEL_Mascota_Dueno(codigo_seleccionado);
                    Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Codigo_Select_Mascota"] = codigo_seleccionado.ToString();
                    codigo_seleccionado = 0;
                    Response.Redirect("frm_Grid_Certificado_Vacuna.aspx");
                }
            }
            catch (Exception exc)
            {
                Alert_Mensaje.Attributes["class"] = "alert alert-danger";
                mensaje_alerta = exc.ToString();
                titulo_mensaje_alerta = "Error: ";
                Alert_Mensaje.Visible = true;
            }
        }
开发者ID:juahidma,项目名称:petnet-web,代码行数:30,代码来源:frm_Grid_Mascota.aspx.cs


示例6: Page_Load

        protected void Page_Load(object sender, EventArgs e)
        {
            if (Session["Centro_Seleccionado"] != null)
            {
                centro_seleccionado = Convert.ToInt32(Session["Centro_Seleccionado"]);
            }
            if (Session["Codigo_Select"] != null)
            {
                codigo_seleccionado = Convert.ToInt32(Session["Codigo_Select"]);
            }
            WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
            wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
            if (!IsPostBack)
            {
                DataTable dt = wsgest.REP_Detalle_Entrada_Inventario(centro_seleccionado, centro_seleccionado);
                ReportViewer1.ProcessingMode = ProcessingMode.Local;

                LocalReport localReport = ReportViewer1.LocalReport;
                localReport.ReportPath = "ReportesWebs/RPT_Entrada_Inventario.rdlc";

                ReportDataSource ds = new ReportDataSource();
                ds.Name = "DS_Reporte_Entrada_Inventario"; // nombre del asistente para informes
                ds.Value = dt;
                ReportViewer1.LocalReport.DataSources.Clear();

                localReport.DataSources.Add(ds);
            }
        }
开发者ID:juahidma,项目名称:petnet-web,代码行数:28,代码来源:frm_rpt_Entrada_Inventario.aspx.cs


示例7: btn_detalle_ServerClick

        protected void btn_detalle_ServerClick(object sender, EventArgs e)
        {
            try
            {
                WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
                wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
                if (codigo_seleccionado == 0)
                {
                    Alert_Mensaje.Attributes["class"] = "alert alert-warning";
                    mensaje_alerta = "No se ha seleccionado ningún registro";
                    titulo_mensaje_alerta = "Advertencia: ";
                    Alert_Mensaje.Visible = true;
                }
                else
                {
                    Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Codigo_Expediente"] = codigo_seleccionado.ToString();
                    Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Centro_Expediente"] = centro_seleccionado.ToString();
                    Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Centro"] = centro;
                    Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Perfil"] = perfil;
                    codigo_seleccionado = 0;
                    Response.Redirect("frm_Grid_Detalle_Expediente.aspx");
                }

            }
            catch (Exception exc)
            {
                Alert_Mensaje.Attributes["class"] = "alert alert-danger";
                mensaje_alerta = exc.ToString();
                titulo_mensaje_alerta = "Error: ";
                Alert_Mensaje.Visible = true;
            }
        }
开发者ID:juahidma,项目名称:petnet-web,代码行数:32,代码来源:frm_Grid_Expediente.aspx.cs


示例8: btn_editar_ServerClick

        protected void btn_editar_ServerClick(object sender, EventArgs e)
        {
            WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
            wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
            try
            {
                if (codigo_seleccionado == 0)
                {
                    Alert_Mensaje.Attributes["class"] = "alert alert-warning";
                    mensaje_alerta = "No se ha seleccionado ningún registro";
                    titulo_mensaje_alerta = "Advertencia: ";
                    Alert_Mensaje.Visible = true;
                }
                else
                {
                    Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Codigo_Select"] = codigo_seleccionado.ToString();
                    Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Centro_Seleccionado"] = centro_seleccionado.ToString();
                    Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Sucursal_Seleccionado"] = sucursal_seleccionado.ToString();
                    codigo_seleccionado = 0;
                    Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"FormAccion"] = "Editar";
                    Response.Redirect("frm_Bodega.aspx");
                }

            }
            catch (Exception exc)
            {
                Alert_Mensaje.Attributes["class"] = "alert alert-danger";
                mensaje_alerta = exc.ToString();
                titulo_mensaje_alerta = "Error: ";
                Alert_Mensaje.Visible = true;
            }
        }
开发者ID:juahidma,项目名称:petnet-web,代码行数:32,代码来源:frm_Grid_Bodega.aspx.cs


示例9: btn_eliminar_ServerClick

        protected void btn_eliminar_ServerClick(object sender, EventArgs e)
        {
            try
            {
                if ((codigo_seleccionado_asignado_centro == 0) && (codigo_seleccionado_asignado_medico == 0))
                {
                    Alert_Mensaje.Attributes["class"] = "alert alert-warning";
                    mensaje_alerta = "No se ha seleccionado ningún registro";
                    titulo_mensaje_alerta = "Advertencia: ";
                    Alert_Mensaje.Visible = true;
                }
                else
                {

                    WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
                    wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
                    wsgest.DEL_Centro_Medico_Veterinario(codigo_seleccionado_asignado_medico,codigo_seleccionado_asignado_centro);
                    Carga_Grid_Asignado();

                }
            }
            catch (Exception exc)
            {
                Alert_Mensaje.Attributes["class"] = "alert alert-danger";
                mensaje_alerta = exc.ToString();
                titulo_mensaje_alerta = "Error: ";
                Alert_Mensaje.Visible = true;
            }
        }
开发者ID:juahidma,项目名称:petnet-web,代码行数:29,代码来源:frm_Asignacion_Medico_Centro.aspx.cs


示例10: btn_regresar_ServerClick

 protected void btn_regresar_ServerClick(object sender, EventArgs e)
 {
     WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
     wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
     Response.Redirect(Accion_Viene);
     Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Viene"] = null;
 }
开发者ID:juahidma,项目名称:petnet-web,代码行数:7,代码来源:rpt_Salida_Inventario.aspx.cs


示例11: btn_guardar_ServerClick

        protected void btn_guardar_ServerClick(object sender, EventArgs e)
        {
            try
            {
                if (FormAccion == "Agregar")
                {
                    WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
                    wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
                    WSGestion.MOD_Articulo obj = new WSGestion.MOD_Articulo();

                    obj.ART_descripcion = txt_descripcion.Value;
                    obj.ART_id_centro_atencion = Convert.ToInt32(txt_cea_codigo.Value);
                    obj.ART_id_articulo = Convert.ToInt32(txt_codigo.Value);
                    obj.ART_codigo_barras = txt_codigo_barras.Value;
                    obj.ART_id_categoria_articulo = Convert.ToInt32(dl_categoria_articulo.SelectedValue);
                    obj.ART_id_unidad_medida = Convert.ToInt32(dl_unidad_medida.SelectedValue);
                    obj.ART_tipo = dl_tipo_articulo.SelectedValue;
                    obj.PRE_art_precio = Convert.ToDecimal(txt_precio.Value, CultureInfo.CreateSpecificCulture("en-US"));
                    obj.PRE_art_fecha = txt_fecha.Text;

                    if (wsgest.CRE_Articulo(obj))
                        Response.Redirect("frm_Grid_Articulo.aspx");
                    else
                    {
                        Alert_Mensaje.Attributes["class"] = "alert alert-danger";
                        mensaje_alerta = "En la creación del artículo a nivel de la base de datos ";
                        titulo_mensaje_alerta = "Error: ";
                        Alert_Mensaje.Visible = true;
                    }
                }

                if (FormAccion == "Editar")
                {
                    WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
                    wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
                    WSGestion.MOD_Articulo obj = new WSGestion.MOD_Articulo();

                    obj.ART_descripcion = txt_descripcion.Value;
                    obj.ART_id_centro_atencion = Convert.ToInt32(txt_cea_codigo.Value);
                    obj.ART_id_articulo = Convert.ToInt32(txt_codigo.Value);
                    obj.ART_codigo_barras = txt_codigo_barras.Value;
                    obj.ART_id_categoria_articulo = Convert.ToInt32(dl_categoria_articulo.SelectedValue);
                    obj.ART_id_unidad_medida = Convert.ToInt32(dl_unidad_medida.SelectedValue);
                    obj.ART_tipo = dl_tipo_articulo.SelectedValue;
                    obj.PRE_art_precio = Convert.ToDecimal(txt_precio.Value, CultureInfo.CreateSpecificCulture("en-US"));
                    obj.PRE_art_fecha = txt_fecha.Text;
                    wsgest.UPD_Articulo(obj);
                    Response.Redirect("frm_Grid_Articulo.aspx");
                }
            }

            catch (Exception exc)
            {
                Alert_Mensaje.Attributes["class"] = "alert alert-danger";
                mensaje_alerta = exc.ToString();
                titulo_mensaje_alerta = "Error: ";
                Alert_Mensaje.Visible = true;
            }
        }
开发者ID:juahidma,项目名称:petnet-web,代码行数:59,代码来源:frm_Articulo.aspx.cs


示例12: btn_aplicar_ServerClick

        protected void btn_aplicar_ServerClick(object sender, EventArgs e)
        {
            try
            {
                if (codigo_seleccionado == 0)
                {
                    Alert_Mensaje.Attributes["class"] = "alert alert-warning";
                    mensaje_alerta = "No se ha seleccionado ningún registro";
                    titulo_mensaje_alerta = "Advertencia: ";
                    Alert_Mensaje.Visible = true;
                }
                else
                {
                    int valor;

                    WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
                    wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
                    valor = wsgest.APL_Entrada_inventario(codigo_seleccionado, centro_seleccionado, bodega_seleccionado, sucursal_seleccionado);

                    switch (valor)
                    {
                        case 0:
                            Carga_Grid();
                            break;
                        case 1:
                            Alert_Mensaje.Attributes["class"] = "alert alert-warning";
                            mensaje_alerta = "El documento no contiene líneas para ser procesadas";
                            titulo_mensaje_alerta = "Advertencia: ";
                            Alert_Mensaje.Visible = true;
                            break;
                        case 2:
                            Alert_Mensaje.Attributes["class"] = "alert alert-warning";
                            mensaje_alerta = "La entrada seleccionada ya se encuentra aplicada";
                            titulo_mensaje_alerta = "Advertencia: ";
                            Alert_Mensaje.Visible = true;
                            break;
                        case 3:
                            Alert_Mensaje.Attributes["class"] = "alert alert-warning";
                            mensaje_alerta = "La entrada seleccionada ya se encuentra anulada";
                            titulo_mensaje_alerta = "Advertencia: ";
                            Alert_Mensaje.Visible = true;
                            break;
                        default:
                            Alert_Mensaje.Attributes["class"] = "alert alert-warning";
                            mensaje_alerta = "Error en la ejecución del proceso en la base de datos";
                            titulo_mensaje_alerta = "Advertencia: ";
                            Alert_Mensaje.Visible = true;
                            break;
                    }
                }
            }
            catch (Exception exc)
            {
                Alert_Mensaje.Attributes["class"] = "alert alert-danger";
                mensaje_alerta = exc.ToString();
                titulo_mensaje_alerta = "Error: ";
                Alert_Mensaje.Visible = true;
            }
        }
开发者ID:juahidma,项目名称:petnet-web,代码行数:59,代码来源:frm_Grid_Entrada_Inventario.aspx.cs


示例13: btn_Salir_Click

 protected void btn_Salir_Click(object sender, EventArgs e)
 {
     WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
     wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
     Session[wsgest.Get_usu_id_session(Session.SessionID.ToString()) + "usu_id_usuario"] = null;
     wsgest.UPD_Usuario_Session(codigo_usuario, "N", Session.SessionID.ToString());
     Response.Redirect("frm_Index.aspx");
 }
开发者ID:juahidma,项目名称:petnet-web,代码行数:8,代码来源:Main.Master.cs


示例14: btn_agregar_ServerClick

 protected void btn_agregar_ServerClick(object sender, EventArgs e)
 {
     WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
     wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
     Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"FormAccion"] = "Agregar";
     codigo_seleccionado = 0;
     Response.Redirect("frm_Bodega.aspx");
 }
开发者ID:juahidma,项目名称:petnet-web,代码行数:8,代码来源:frm_Grid_Bodega.aspx.cs


示例15: btn_agregar_ServerClick

 protected void btn_agregar_ServerClick(object sender, EventArgs e)
 {
     WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
     wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
     Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"FormAccion"] = "Agregar";
     Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Codigo_Expediente"] = codigo_expediente;
     Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Centro_Expediente"] = centro_expediente;
     Response.Redirect("frm_Detalle_Expediente.aspx");
 }
开发者ID:juahidma,项目名称:petnet-web,代码行数:9,代码来源:frm_Grid_Detalle_Expediente.aspx.cs


示例16: btn_agregar_ServerClick

 protected void btn_agregar_ServerClick(object sender, EventArgs e)
 {
     WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
     wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
     Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"FormAccion"] = "Agregar";
     Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Codigo_Select_Mascota"] = Codigo_Mascota.ToString();
     Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Codigo_Select"] = 0;
     Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Centro"] = centro;
     Response.Redirect("frm_Certificado_Vacunacion.aspx");
 }
开发者ID:juahidma,项目名称:petnet-web,代码行数:10,代码来源:frm_Grid_Certificado_Vacuna.aspx.cs


示例17: btn_guardar_ServerClick

        protected void btn_guardar_ServerClick(object sender, EventArgs e)
        {
            if (this.Page.IsValid)
            {
                try
                {
                    if (FormAccion == "Agregar")
                    {
                        WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
                        wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
                        WSGestion.MOD_Mascota obj = new WSGestion.MOD_Mascota();
                        txt_codigo.Value = "0";
                        obj.MAS_id_mascota = Convert.ToInt32(txt_codigo.Value);
                        obj.MAS_id_raza = Convert.ToInt32(dlRaza.SelectedValue);
                        obj.MAS_nombre = txt_nombre.Value;
                        obj.MAS_fecha_nacimiento = txt_fecha_nacimiento.Text;
                        obj.MAS_sexo = dl_sexo.SelectedValue;
                        obj.MAS_color = txt_color.Value;
                        obj.MAS_observaciones = txt_observaciones.Value;
                        obj.DXM_id_dueno = Convert.ToInt32( txt_codigo_dueno.Value);
                        wsgest.CRE_Mascota(obj);

                        Response.Redirect("frm_Grid_Mascota.aspx");
                    }

                    if (FormAccion == "Editar")
                    {
                        WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
                        wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
                        WSGestion.MOD_Mascota obj = new WSGestion.MOD_Mascota();

                        obj.MAS_id_mascota = Convert.ToInt32(txt_codigo.Value);
                        obj.MAS_id_raza = Convert.ToInt32(dlRaza.SelectedValue);
                        obj.MAS_nombre = txt_nombre.Value;
                        obj.MAS_fecha_nacimiento = txt_fecha_nacimiento.Text;
                        obj.MAS_sexo = dl_sexo.SelectedValue;
                        obj.MAS_color = txt_color.Value;
                        obj.MAS_observaciones = txt_observaciones.Value;
                        obj.DXM_id_dueno = Convert.ToInt32(txt_codigo_dueno.Value);

                        wsgest.UPD_Mascota(obj);
                        Response.Redirect("frm_Grid_Mascota.aspx");
                    }
                }

                catch (Exception exc)
                {
                    Alert_Mensaje.Attributes["class"] = "alert alert-danger";
                    mensaje_alerta = exc.ToString();
                    titulo_mensaje_alerta = "Error: ";
                    Alert_Mensaje.Visible = true;
                }

            }
        }
开发者ID:juahidma,项目名称:petnet-web,代码行数:55,代码来源:frm_Mascota.aspx.cs


示例18: SetSubDataSource

        public void SetSubDataSource(object sender, SubreportProcessingEventArgs e)
        {
            WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
            wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
            DataTable dt = wsgest.REP_Detalle_Salida_Inventario(codigo_seleccionado, centro_seleccionado);
            ReportDataSource ds = new ReportDataSource();
            ds.Name = "DS_RPT_DETALLE_SALIDA_INVENTARIO";
            ds.Value = dt;

            e.DataSources.Add(ds);
        }
开发者ID:juahidma,项目名称:petnet-web,代码行数:11,代码来源:rpt_Salida_Inventario.aspx.cs


示例19: btn_guardar_ServerClick

        protected void btn_guardar_ServerClick(object sender, EventArgs e)
        {
            try
            {
                if (FormAccion == "Agregar")
                {
                    WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
                    wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
                    WSGestion.MOD_Dueno obj = new WSGestion.MOD_Dueno();

                    obj.DUE_nombre = txt_nombre.Value;
                    obj.DUE_telefono = txt_telefono.Value;
                    obj.DUE_pais = txt_pais.Value;
                    obj.DUE_celular = txt_celular.Value;
                    obj.DUE_apellido1 = txt_apellido1.Value;
                    obj.DUE_apellido2 = txt_apellido2.Value;
                    obj.DUE_codigo_postal = txt_codigo_postal.Value;
                    obj.DUE_email = txt_email.Value;
                    obj.DUE_cuidad = txt_cuidad.Value;

                    wsgest.CRE_Dueno(obj);
                    Response.Redirect("frm_Grid_Dueno.aspx");
                }

                if (FormAccion == "Editar")
                {
                    WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
                    wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
                    WSGestion.MOD_Dueno obj = new WSGestion.MOD_Dueno();

                    obj.DUE_nombre = txt_nombre.Value;
                    obj.DUE_telefono = txt_telefono.Value;
                    obj.DUE_pais = txt_pais.Value;
                    obj.DUE_celular = txt_celular.Value;
                    obj.DUE_apellido1 = txt_apellido1.Value;
                    obj.DUE_apellido2 = txt_apellido2.Value;
                    obj.DUE_codigo_postal = txt_codigo_postal.Value;
                    obj.DUE_cuidad = txt_cuidad.Value;
                    obj.DUE_email = txt_email.Value;
                    obj.DUE_id_dueno = Convert.ToInt32(txt_codigo.Value);

                    wsgest.UPD_Dueno(obj);
                    Response.Redirect("frm_Grid_Dueno.aspx");
                }
            }

            catch (Exception exc)
            {
                Alert_Mensaje.Attributes["class"] = "alert alert-danger";
                mensaje_alerta = exc.ToString();
                titulo_mensaje_alerta = "Error: ";
                Alert_Mensaje.Visible = true;
            }
        }
开发者ID:juahidma,项目名称:petnet-web,代码行数:54,代码来源:frm_Dueno.aspx.cs


示例20: Page_Load

        protected void Page_Load(object sender, EventArgs e)
        {
            WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
            wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
            try
            {
                if (Session[wsgest.Get_usu_id_session(Session.SessionID.ToString()) + "Codigo"] == null)
                {
                    Response.Redirect("frm_Index.aspx");
                }
                if (Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"FormAccion"] != null)
                {
                    FormAccion = Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"FormAccion"].ToString();
                }
                if (Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Centro"] != null)
                {
                    centro = Convert.ToInt32(Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Centro"]);
                }
                if (Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Codigo_Select"] != null)
                {
                    codigo_seleccionado = Convert.ToInt32(Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Codigo_Select"]);
                }
                if (Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Centro_Seleccionado"] != null)
                {
                    centro_seleccionado = Convert.ToInt32(Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Centro_Seleccionado"]);
                }
                if (!IsPostBack)
                {
                    txt_cea_codigo.Value = centro.ToString();
                    Carga_Centro_Nombre(centro);
                    if (centro != 1)
                    {
                        txt_cea_codigo.Disabled = true;
                        txt_cea_nombre.Disabled = true;
                    }
                    if (FormAccion == "Editar")
                    {
                        if (codigo_seleccionado != 0)
                        {
                            Carga_Editar();
                        }
                    }
                }

            }
            catch (Exception exc)
            {
                Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Codigo_Select"] = "0";
                Alert_Mensaje.Attributes["class"] = "alert alert-danger";
                mensaje_alerta = exc.ToString();
                titulo_mensaje_alerta = "Error: ";
                Alert_Mensaje.Visible = true;
            }
        }
开发者ID:juahidma,项目名称:petnet-web,代码行数:54,代码来源:frm_Sucursal.aspx.cs



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# WVec类代码示例发布时间:2022-05-24
下一篇:
C# Common.CWarning类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap