我是网络新手,我试图创建一个简单的网站。
我有这个多行的文本框,并且具有固定的宽度和高度。
<asp:TextBox ID="TextBox1" runat="server" Height="168px" TextMode="MultiLine"
Width="303px"></asp:TextBox>
我还创建了一个web.config来连接我的sql数据库:
<connectionStrings>
<add name="TDBSConnectionString" connectionString="Data Source=local;Initial Catalog=IBSI;Persist Security Info=True;User ID=sa;Password=1"
providerName="System.Data.SqlClient" />
如何从数据库中检索数据并将内容显示在上面的文本框中。 我使用多行,因为数据不止一个。