使用列表导致 ASP.Net 中的第二个页面加载

发布于 2024-11-03 18:24:53 字数 1278 浏览 0 评论 0原文

我有一个相当简单的 Web 应用程序,它从数据库(在 DataTable 中)获取项目列表,并将该 DataTable 的视图绑定到 Repeater。

当将我的 DataTable 转换为列表(在类库中完成)时,页面加载会第二次触发!通过调试器,列表中的项目与数据表中的项目相同。

我的页面中唯一的代码是:

    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            rptOffers.DataSource = DataAccess.GetOfferList(offerId); // returns List<T>
            rptOffers.DataBind();
        }
    }

    public static List<OfferItem> GetOfferList(int offerId)
    {
        DataTable dtOffers = GetOfferData(offerId);
        List<OfferItem> offers = new List<OfferItem>();

        // loop throw all of the offers
        foreach (DataRow dr in dtOffers.Rows)
        {
            // add each offer to the List<>
            OfferItem currentOffer = new OfferItem();

            // initialize the OfferItem properties...

            offers.Add(currentOffer);
        }

        return offers;
    }

当我将其更改回此时,它工作正常:

    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            rptOffers.DataSource = DataAccess.GetOfferItems(offerId);
            rptOffers.DataBind();
        }
    }

我的列表中还需要做其他事情以防止它再次运行页面加载吗?

I have a fairly simple web application that gets a list of items from a database (in a DataTable), and binds a view of that DataTable to a Repeater.

When converting my DataTable to a List (which is done in a class library), Page Load fires a second time! Walking though the debugger, the same items are in the list that were in the DataTable.

The only code in my page was:

    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            rptOffers.DataSource = DataAccess.GetOfferList(offerId); // returns List<T>
            rptOffers.DataBind();
        }
    }

    public static List<OfferItem> GetOfferList(int offerId)
    {
        DataTable dtOffers = GetOfferData(offerId);
        List<OfferItem> offers = new List<OfferItem>();

        // loop throw all of the offers
        foreach (DataRow dr in dtOffers.Rows)
        {
            // add each offer to the List<>
            OfferItem currentOffer = new OfferItem();

            // initialize the OfferItem properties...

            offers.Add(currentOffer);
        }

        return offers;
    }

When I change it back to this, it works fine:

    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            rptOffers.DataSource = DataAccess.GetOfferItems(offerId);
            rptOffers.DataBind();
        }
    }

Is there anything else I need to do in my List to keep it from running Page Load again?

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

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

发布评论

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

评论(1

时光沙漏 2024-11-10 18:24:53

当我的 .aspx 文件中 AutoEventWireup 设置为 true

    <%@ ... AutoEventWireup="True" ...  %>

并且我的 InitializeComponent 函数仍然包含 Page_Load 的连接时,我遇到了这个问题

    private void InitializeComponent()
    {  
        this.Load += new System.EventHandler(this.Page_Load);
    }

I have experienced this issue when AutoEventWireup is set to true in my .aspx file

    <%@ ... AutoEventWireup="True" ...  %>

and my InitializeComponent function still contains a hookup for Page_Load

    private void InitializeComponent()
    {  
        this.Load += new System.EventHandler(this.Page_Load);
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文