在asp.net中使用集合类作为数据源的问题

发布于 2024-09-06 14:53:03 字数 369 浏览 1 评论 0原文

我正在使用集合类作为 gridview 的数据源。请从 http://nopCommerce.com 下载 nopCommerce 源代码。我正在遵循同样的方法。

我已经创建了我的提供程序和集合类,用作 gridview 的数据源。 数据完美绑定。问题是我必须自定义 gridview 的所有事件,例如“RowDeleting”、“RowUpdating”、“RowCancellingEdit”等。最重要的是,如果我单击编辑、更新或选择按钮,页面会回发。

有人可以提供适当的解决方案吗?

感谢您分享您的时间。

问候 穆罕默德·伊尔凡

I am using collection class to work as datasource for gridview. Please download nopCommerce source from http://nopCommerce.com. I am following the same approach.

I have created my providers and collection classes being used as datasources for gridview.
The data is binding perfectly. The problem is that i have to customize all the events for gridview like "RowDeleting", "RowUpdating", "RowCancellingEdit" etc. Above all the page is postback if i am clicking on edit, update or select buttons.

Can someone provide proper solution.

Thanks for sharing your time.

Regards
Mohammad Irfan

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

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

发布评论

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

评论(2

不美如何 2024-09-13 14:53:04

我没有看到任何无法正常工作的地方。因为集合是一个“简单”对象,所以您必须实现这些方法,因为 GridView 不知道如何对对象集合进行这些更改。

您可能会考虑创建自己的数据源控件

I don't see anything that isn't working correctly. Because a collection is a "simple" object you have to implement these methods as the GridView does not know how to make these changes to a collection of objects.

You might think about creating your own DataSource control.

溺渁∝ 2024-09-13 14:53:04

您是否在绑定数据之前检查页面是否正在回发?

IE:

protected void Page_Load(object sender, EventArgs e)
{

    if(!IsPostBack)
    {
         BindGridView();

    }

}

Are you checking if the page is posting back before you Bind your data?

i.e.:

protected void Page_Load(object sender, EventArgs e)
{

    if(!IsPostBack)
    {
         BindGridView();

    }

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