ASP.NET中,页面有一GridView控件,如何在GridView中显示数据库中某一特定行的全部数据?

2024-11-15 14:22:27
推荐回答(2个)
回答1:



//要显示的列
//要显示的列
//要显示的列



在后台
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
BindShowData();
}
}
protected void BindShowData()
{
ArrayList al = new ArrayList();
string str = "";
try
{
str = "select 列名 from stu_info "
al = PublicClass.SQLSelect(str, 显示项的个数 );
if (al.Count == 11)
{
UNameH.Text = al[0].ToString();
}
}
catch (Exception ex)
{
Response.Write(ex.Message);
}
}

回答2:

GridView.DataSource = 你从stu_info表取出的数据;
GridView.DataBind();