在 ASP .NET MVC 3 中过滤索引视图?
有没有过滤 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在索引视图中执行相同的操作。您只需要在控制器中接受可选参数即可。
我通常在视图上设置一个表单来输入参数,然后将
METHOD
更改为GET
而不是POST
。You can do the same in your index view. You just need to accept optional parameters in your controller.
I usually setup a form on the view for the parameter entry, and then just change the
METHOD
toGET
instead ofPOST
.