我不确定我在这里做错了什么。我想要做的是将 ArrayList 绑定到我在主页上拥有的 DataGrid。事情变得空白或只是出错。您可以提供的任何样品都会有很大帮助。我还需要将图像放在一个可点击的列中。那是硬编码的。谢谢。
在我的 default.aspx 页面中,我有...
<"asp:DataGrid ID="DataGrid1"> </asp:DataGrid>
然后在 default.cs 页面中我有......
public class Share : Page
{
protected TextBox SendExtraDetails;
protected DataGrid DataGrid1;
......
public void Page_Load(object sender, EventArgs e)
{
ArrayList alist = (ArrayList)Session["RSArrayList"];
Session["RSArrayList"] = alist;
DataGrid1.DataSource = alist;
DataGrid1.DataBind();
}
}