我想知道如何将数据库中的数据加载到 asp.net 表单中。
所以我使用代码通过查询“ Select * From ... Where ... = ...
”获取数据
然后我将它加载到阅读器中
While (reader.read)
{ string sProductName = Convert.ToString(reader[1]);
/*
Now I need to display this name and all the other data
(selling price, etc) on the form
But as I do not know how many products there will be it (the form) has to change
as the database information does (more products get added or removed).
*/
}
我不知道如何做最后一部分。如何使找到的数据显示在屏幕上。
谢谢 !
我需要显示的数据是标题下方的产品名称、产品描述和产品售价,仅此而已。