Que tal buen dia.
Trato de establecer la coneccion de c# .net 2008 con sql server , aca esta el codigo.
Código PHP:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Text;
using System.Data.Sql;
using System.Data.SqlClient;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
SqlConnection myConnection = new SqlConnection("user id=bjesua-PC/bjesua;server=BJESUA-PC/SQLEXPRESS;Trusted_Connection=yes;database=IPC2; connection timeout=30");
myConnection.Open();
SqlCommand myCommand = new SqlCommand("insert into usuario values ('" + TextBox1.Text + "','" + TextBox2.Text + "','" + TextBox3.Text + "','" + TextBox4.Text + "','" + TextBox5.Text + "')", myConnection);
myCommand.ExecuteNonQuery();
}
}
Pero lo que obtengo es un error 40 en el siguente codigo
Código PHP:
myConnection.Open();
Agradeceria mucho su ayuda!, buen Dia gracias!!!...