Hola comopañeros
Tengo un problema que no se como resolver, hice una clse de conexión pero me aparece el siguiente error, "Unable to start debugging on the web server. The server does not support of ASP. NET or ATL Server applications."
no he tenido problemas con la configuración pero en este caso no se que hacer help me pls; éste es mi código.
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Collections.Generic;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
using System.Data.Sql;
using System.Data.SqlTypes;
/// <summary>
/// Summary description for Conexion
/// </summary>
///
namespace Guardas
{
public class Conexion
{
public void Login(object sender, EventArgs e)
{
//Credenciales para la autentificación
String UserNameCollection = "Prueba";
String PasswordCollection = "password";
//Conexión a la base de datos
SqlConnection uno = new SqlConnection();
string strConexion = "Data Source=ISABELINA-CRUZ\\SQLEXPRESS;Initial Catalog=Guardas;User ID=" + UserNameCollection + ";Password=" + PasswordCollection;
uno.ConnectionString = strConexion;
////Se abre la conexión a la base de datos
// uno.Open();
}
public Conexion()
{
}
public bool abrirconexion()
{
bool x = false;
//si el estado de la conexion no está abierto
try
{
//abrir
this.uno.Open();
x = true;
}
catch
{
x = false;
}
return x;
}
//cerrar conexion
public bool cerrarconexion()
{
bool y = false;
try
{
this.uno.Close();
}
catch
{
return y;
}
return false;
}
//Devuelve el estado de la conexión
public SqlConnection obtenerconexion()
{
return this.uno;
}
}
}
De antemano muchas gracias, saludos!!