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


C# Conexion.Conectar方法代码示例

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


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

示例1: Page_Load

    protected void Page_Load(object sender, EventArgs e)
    {
        if (Request.QueryString["ImageID"] != null)
        {
            int idProducto = Convert.ToInt32(Request.QueryString["ImageID"]);
            Conexion conectarBD = new Conexion();
            SqlCommand cmdBuscar = new SqlCommand();
            cmdBuscar.Connection = conectarBD.Conectar();
            cmdBuscar.CommandText = "getImagen_Producto";             // Nombre del procedimiento almacenado
            cmdBuscar.CommandType = CommandType.StoredProcedure;    // Indicar que se ejecuta un Procedimiento en vez de una Query
            cmdBuscar.Parameters.AddWithValue("@idProducto", idProducto);
            DataTable dt = new DataTable();
            SqlDataAdapter sda = new SqlDataAdapter();
            sda.SelectCommand = cmdBuscar;
            sda.Fill(dt);
            if (dt != null)
            {
                Byte[] bytes = (Byte[])dt.Rows[0]["imagen_prod"];
                Response.Buffer = true;
                Response.Charset = "";
                Response.Cache.SetCacheability(HttpCacheability.NoCache);
                //Response.ContentType = dt.Rows[0]["ContentType"].ToString();
                Response.AddHeader("content-disposition", "attachment;filename=") ;//+ dt.Rows[0]["Name"].ToString());
                Response.BinaryWrite(bytes);
                Response.Flush();
                Response.End();
            }

        }
    }
开发者ID:hectorcq,项目名称:proyectogestion,代码行数:30,代码来源:MostrarImage.aspx.cs

示例2: Main

        static void Main()
        {
            Console.WriteLine("SERVIDOR DE NIVELES\n"); // Console.WriteLine("Pulse cualquier tecla para comenzar"); Console.ReadLine();

            // Recuperar numeros de puerto desde el servidor de nombres:
            RemotingConfiguration.RegisterWellKnownClientType(typeof(SokobanURJC.TablaNombres), "http://localhost:1232/TablaNombres.remoto");
            TablaNombres tablaNombres = (TablaNombres)Activator.GetObject(typeof(SokobanURJC.TablaNombres), "http://localhost:1232/TablaNombres.remoto");
            int puertoNiveles = tablaNombres.puertoNiveles;
            String nombreNiveles = tablaNombres.nombreNiveles;

            // Establecer comunicaciones: configurarse como servidor.
            Console.WriteLine("Estableciendo direccion de servicio de niveles:\n\npuerto: " + puertoNiveles + "\nnombre del objeto remoto: " + nombreNiveles);

            Conexion cnxServLogica = new Conexion();
            IChannel canalServLogica = cnxServLogica.Conectar("servidor", "http", puertoNiveles, typeof(SokobanURJC.ColeccionNiveles), nombreNiveles);

            Console.WriteLine("\n\nAtendiendo las peticiones. Pulse Enter para salir.");
            Console.ReadLine();
        }
开发者ID:javieraguirre,项目名称:Master,代码行数:19,代码来源:ServidorNiveles.cs


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