主题:对与这个问题我头都大了。疯了!
我不知道那里出问题了,就是连接不上SQL数据库,
是不是机子那里没装好,
我用VB的时候是可以连接上SQL的。
就是用C#就不行了
请高人指点一下,一定加分!
using System.Data.SqlClient;
namespace _4
{
/// <summary>
/// WebForm1 的摘要说明。
/// </summary>
public class WebForm1 : System.Web.UI.Page
{
protected System.Web.UI.WebControls.DropDownList DropDownList1;
protected System.Web.UI.WebControls.Button Button1;
private void Page_Load(object sender, System.EventArgs e)
{
// 在此处放置用户代码以初始化页面
if (!this.IsPostBack )
{
string connstring="server=localhost;uid=sa;pwd=;database=webdevelop";
SqlConnection conn=new SqlConnection (connstring);
string sql="select*from loginuser";
SqlCommand comm=new SqlCommand (sql,conn);
conn.Open();
this.DropDownList1.DataSource =comm.ExecuteReader();
this.DropDownList1.DataTextField ="username";
this.DropDownList1.DataBind ();
conn.Close();
}
}[em11]
是不是机子那里没装好,
我用VB的时候是可以连接上SQL的。
就是用C#就不行了
请高人指点一下,一定加分!
using System.Data.SqlClient;
namespace _4
{
/// <summary>
/// WebForm1 的摘要说明。
/// </summary>
public class WebForm1 : System.Web.UI.Page
{
protected System.Web.UI.WebControls.DropDownList DropDownList1;
protected System.Web.UI.WebControls.Button Button1;
private void Page_Load(object sender, System.EventArgs e)
{
// 在此处放置用户代码以初始化页面
if (!this.IsPostBack )
{
string connstring="server=localhost;uid=sa;pwd=;database=webdevelop";
SqlConnection conn=new SqlConnection (connstring);
string sql="select*from loginuser";
SqlCommand comm=new SqlCommand (sql,conn);
conn.Open();
this.DropDownList1.DataSource =comm.ExecuteReader();
this.DropDownList1.DataTextField ="username";
this.DropDownList1.DataBind ();
conn.Close();
}
}[em11]