如何在AspxGridView FilterRow中搜索C#方法?

发布于 2024-10-21 19:01:50 字数 464 浏览 0 评论 0原文

我使用 AspxGridView 具有 FilterRow 属性。 FilterRow 属性在 LinqServerMode、LinqDataSource 等中工作良好。这意味着:

如果我键入过滤器控件,filterRow 属性工作正常

但我没有在上面编码!我已经这样做了,如下所示:


public class MyClass
{
      void GetData()
{

 // dosomething
}
}


void FillGrid()
{

    MyAspxGridView.DataSource = new MyClass().GetData();
   MyAspxGridView.DataBind();
}

您的 FilterRow 的自动填充属性不起作用!我认为这种方法始终打开连接。如何使用 My FillGrid 方法获取数据 thping 过滤器....

i have use AspxGridView which has FilterRow property. FilterRow property is working good in LinqServerMode,LinqDataSource etc. it means that:

if i type filter control, filterRow propert works fine

BUT i don't coding above! i have done that like below:


public class MyClass
{
      void GetData()
{

 // dosomething
}
}


void FillGrid()
{

    MyAspxGridView.DataSource = new MyClass().GetData();
   MyAspxGridView.DataBind();
}

Your FilterRow's Autofilling property is not working! i think that this method ALL TIME open connection. How to get data thping filter with My FillGrid Method....

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

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

发布评论

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

评论(1

我的鱼塘能养鲲 2024-10-28 19:01:50

要解决此问题,您应该在 Page_Init 方法中调用 FillGrid 方法。更多详情请参考为什么会分页(排序、分组、过滤) )在 ASPxGridView 中不起作用? 文章。

To resolve this problem, you should call the FillGrid method within the Page_Init method. For more details, please refer to the Why might paging (sorting, grouping, filtering) not work in the ASPxGridView? article.

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