本文整理汇总了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();
}
}
}
示例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();
}