是不是机子那里没装好,
我用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();
}
}
我不知道为什么就是不能连接数据库