我创建了一个jquery函数,它从选择框中获取值,然后我将当前页面的url分配给" http:// localhost / Products?availability = High& priceSort = Low& tab = 2" 我想通过获取我的网址的参数字符串来查询数据库中的产品。任何人都知道如何使用linq to sql在我的控制器中查询这些参数字符串,然后我可以根据URL中的值从数据库中获取结果。
我正在使用我视图页面中的过滤器框执行此操作。我想在我的网址中使用参数字符串来过滤我从数据库查询的产品。
感谢。
答案 0 :(得分:1)
public class ProductsController : Controller
{
// http://localhost/Products/Search?availability=High&priceSort=Low&tab=2
public ActionResult Search(string availability, string priceSort, int tab)
{
// your implementation here
}
}