Think of New Egg's new e-commerce sweep model , where keyword links in the navigation bar further limit the currently displayed list of products with each choice.
I am setting up a home crawler with these types of routes:
http:
http:
http:
But now I want to add links to the side navigation, which further limit the content:
1 Bedroom
2 Bedroom
4 Bedroom
1-4 Acres
4-10 Acres
10+ Acres
How to transfer and maintain the choice between clicks using MVC? I think my options are:
- Continue adding named parameters to the query string, for example / {acres}: {low} - {high}, but this requires that all parameters exist, I could not select more than one criterion, or I hit the maximum request length.
- {housetype} { }, , , (, DTO), .AddCriteria( "Acres", ".gt.", "1" );.AddCriteria( "Acres", ".lt.", "4" ) .. .
- - ?
, , ( ), ASP.NET MVC. .