SqlDataAdapter 根本就不需要conn.open,现在你的那个数据控件肯定不能显示。
在后面加DataGridView1。DataBind();试试
任何控件在执行绑定都需要手动去加DataBind()
比如:
也需要在后台写Page.DataBind()或者TextBox1。DataBind();
Conn = New SqlConnection("Data Source=(local);Initial Catalog=Sales;" & _
"Integrated Security=false;User ID=sa;Password=sa123")
后面加上下面的话试试!~
Conn.open()
Conn = New SqlConnection("server=(local);database=Sales;uid=sa;pwd=sa123")
你想问什么?