在 ASP .NET MVC 3 中过滤索引视图?

发布于 2024-10-27 06:19:43 字数 120 浏览 0 评论 0原文

有没有过滤 ASP .NET MVC 3 索引视图的方法?

我正在考虑一个搜索网格,您可以在其中输入一些参数,然后过滤索引数据源。在 PHP 世界中,我将使用 $_GET 或 $_POST 来检索搜索参数结果。

Is there a method to filtering a ASP .NET MVC 3 Index view?

I am thinking a search grid where you enter some parameters that then filter the indexs datasource. In PHP world I would use $_GET or $_POST to retrieve the search parameter results.

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

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

发布评论

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

评论(1

っ左 2024-11-03 06:19:43

您可以在索引视图中执行相同的操作。您只需要在控制器中接受可选参数即可。

public ActionResult Index(int? param1, string param2, int? param3){
    //filter away
}

我通常在视图上设置一个表单来输入参数,然后将 METHOD 更改为 GET 而不是 POST

You can do the same in your index view. You just need to accept optional parameters in your controller.

public ActionResult Index(int? param1, string param2, int? param3){
    //filter away
}

I usually setup a form on the view for the parameter entry, and then just change the METHOD to GET instead of POST.

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