ASP.NET / DataList 的 DataItem 回发后为空

发布于 2024-09-15 10:48:55 字数 811 浏览 2 评论 0原文

在我的 ASP.NET 表单中回发(单击按钮)后,表单的所有 DataItem 均为 null。为什么?即使在回发后,我应该怎么做才能检索 DataList 的内容?

protected void buttonAddRecord_Click(object sender, EventArgs e)
    {
        foreach (DataListItem item in listFields.Items)
        {
            // item.DataItem == null  WTF?
        }
    }

protected void Page_Load(object sender, EventArgs e)
    {
        BindFields();
    }

private void BindFields()
    {
        object setting = MySettings.GetSetting();

        if (!Null.IsNull(setting))
        {
            listFields.DataSource =     
                DataProvider.GetData(int.Parse(setting.ToString()));
            listFields.DataBind();
        }

        listFields.Visible = listFields.Items.Count > 0;
        emptyMessage.Visible = listFields.Items.Count == 0;
    }

After postback (click on a button) in my ASP.NET form, all the DataItem of my form are null. Why? What should I do to retrieve the content of the DataList even after postback?

protected void buttonAddRecord_Click(object sender, EventArgs e)
    {
        foreach (DataListItem item in listFields.Items)
        {
            // item.DataItem == null  WTF?
        }
    }

protected void Page_Load(object sender, EventArgs e)
    {
        BindFields();
    }

private void BindFields()
    {
        object setting = MySettings.GetSetting();

        if (!Null.IsNull(setting))
        {
            listFields.DataSource =     
                DataProvider.GetData(int.Parse(setting.ToString()));
            listFields.DataBind();
        }

        listFields.Visible = listFields.Items.Count > 0;
        emptyMessage.Visible = listFields.Items.Count == 0;
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

旧时光的容颜 2024-09-22 10:48:55

找到我的答案 此处

John所说的,数据源项
仅在数据绑定时可用。
之后将无法再访问它们
初始加载。

您可能会考虑拥有一个物体或
对象集合表示
您使用更新的屏幕数据
网格,然后保留来自该网格的更改
到数据库。

更准确地说,我使用 HiddenField 跨帖子存储 ID,并从数据库请求数据,而不是尝试从 DataItem 获取数据(不能在数据绑定事件之外使用)。

HiddenField 控件是习惯于
存储一个需要的值
跨帖子持久保存到服务器。

Found my answer here.

What John said, the data source items
are only avaliable when databound.
They are no longer accessable after
initial loading.

You might consider having an object or
object collection representing
onscreen data that you update with the
grid, then persist changes from that
to databases.

More precisely, I used an HiddenField to store an ID across posts and I request data from the database instead of trying to get it form the DataItem (which can't be used outside the databinding event).

The HiddenField control is used to
store a value that needs to be
persisted across posts to the server.

烟凡古楼 2024-09-22 10:48:55

DataItem 仅在数据绑定时可用。

Load 发生在 Click 之前,因此您无论如何都会覆盖数据。

这样做:

protected void Page_Load(object sender, EventArgs e)
{
    if (!Page.IsPostBack)
    {
        BindFields();
    }
}

您应该使用数据源(如 ObjectDataSource)来处理数据绑定和更新/插入。

更新/建议:

使用占位符将数据绑定到您会给自己带来麻烦。您应该考虑使用 ListView、GridView、DataList 或 Repeater。我确信其中任何一个都能满足您的需求,并且您将需要更少的编程。用你的时间来学习它们,而不是试图让它发挥作用,它注定会失败。

DataItem is only available when databinding.

Load comes before Click so you're overwriting your data anyways.

Do this:

protected void Page_Load(object sender, EventArgs e)
{
    if (!Page.IsPostBack)
    {
        BindFields();
    }
}

You should use a DataSource (like ObjectDataSource) to handle DataBinding and Update/Insert.

Update / advise:

Using PlaceHolders to bind data to you are getting yourself in trouble. You should consider using either a ListView, GridView, DataList or Repeater. I'm sure any of those do what you want and you will have to program less. Use your time to learn them instead of trying to get this to work, its doomed to fail.

写给空气的情书 2024-09-22 10:48:55

检查每次回发后是否确实对 DataList 进行了 DataBind()。通常,当您不再次绑定 DataList、GridView、DropDownList(和其他控件)后,回发后它们会变为空。

Check if you really DataBind() the DataList after each postback. Normally you get DataList, GridView, DropDownList (and other Controls) empty after a PostBack when you don't bind them again.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文