我的web.config
中有这个连接字符串:
<connectionStrings>
<add name="SQLServerConnectionString"
connectionString= "..."
providerName="System.Data.SqlClient" />
</connectionStrings>
这个简单的C#代码来自db:
dbAD.SelectCommand = new OleDbCommand("SELECT * FROM Profile ORDER BY FullName ASC", dbConnect);
dbAD.Fill(dbRS, "Profile");
if (dbRS.Tables("Profile").Rows.Count > 0)
{
foreach (DataRow employee in dbRS.Tables("Profile").Rows)
{
Response.Write("Employee: " + Profile("FullName") + " " + Profile("Academy") + "<p>");
}
}
然而,我收到错误:
当前上下文中不存在名称“dbAD”
我认为我需要事先定义dbAD
或其他一些变量,但我只是猜测。
提前致谢!
答案 0 :(得分:0)
试试这段代码:
我起来:
descriptionIklanBaris