1

说,我有一个 TextBox - 当用户在 TextBox 中输入内容并单击添加内容时,应在没有任何数据库连接的情况下在 DataGrid 中填充内容。用户可以在文本框中添加重复项并单击添加,因此每个值都会填充到网格中。我如何实现这一目标?

4

1 回答 1

1

您可以尝试这样的事情,首先您必须导入System.Collection.Generic命名空间

 private List<string> addContent(string content)
{
    //create a generic list of string type
    List<string> s = new List<string>();

    for (int i = 0; i < 10; i++)
    {
        s.Add(content);
    }
    return s;
}

protected void btnAdd_Click(object sender, EventArgs e)
{
   //Passed the List<> as DataSource and then bind the content in the list<> in the  DataGrid
    this.DataGrid1.DataSource = this.addContent(this.txtadd.Text);
    this.DataGrid1.DataBind();

}

我希望这对你有用

于 2012-05-04T02:56:07.483 回答