this.label控件.DataBindings.Add("Text", dataSet.Tables["表名"|索引名], "字段名")上面就是将数据库数据绑定到指定控件,但是五条不能一起显示 可以通过CurrencyManager类导航。。。
<a href="aaa.aspx?conent=<%=Eval("conent")%>">查看详细</a>
aaa.aspx页面放一个label
然后 <label><%=Request["conent"]%></label>
不同的开发语言代码不同,以C# WINFORM为例:方法一、数据绑定
首先连接数据库,读取数据 绑定控件 textbox1.text=数据库取出值
方法二、写代码
//sql语句string sql = string.Format("SELECT text FROM Test WHERE ID = {0})", 1)
//数据库名为Temp.mdb,表为Test,包含2个字段:ID 和 text
string DbConnectionString = "Data Source=Computer-PCUser ID=saPassword=123456Initial Catalog=TempPooling=true"
SqlConnection con = new SqlConnection(DbConnectionString)
SqlCommand cmd = new SqlCommand(sql, con)
cmd.CommandType = CommandType.Text
SqlDataReader myReader
con.Open()
myReader = cmd.ExecuteReader()
textBox1.Text = myReader["text"].ToString()
MessageBox.Show("完成!", "系统提示", MessageBoxButtons.OK, MessageBoxIcon.Information)
cmd.Cancel()
myReader.Close()
Label是不能直接绑定的,因为你从数据库查出来的数据是一张表,只有把它赋给一个DataTable或DataRow才行。例如:在DataList中添加几个Label,绑定DataList之后再将对应的字段赋给Label.text欢迎分享,转载请注明来源:内存溢出
评论列表(0条)