Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is a modification to a question I've asked before on this forum.

My controller action:

public ActionResult SearchResults(string searchTerm, int page)...

My view:

<%= Html.PageLinks((int)ViewData["CurrentPage"], (int)ViewData["TotalPages"], i => Url.Action("SearchResults", new { page = i }))%>...

The route entries:

routes.MapRoute(
            null,
            "SearchResults",
            new { controller = "Search", action = "SearchResults", page = 1 } // Defaults
        );

        routes.MapRoute(
          "Search",
          "SearchResults/Page{page}",
          new { controller = "Search", action = "SearchResults" },
          new { page = @"\d+" }
        );

My goal is to have paging links for the search results. The problem is that when I click any page in the paging links, it gives me the search results of an empty serach term. How can I pass the search term parameter which is a string in addition to the page number parameter ? What should I put in the routing ?

share|improve this question

2 Answers

I think if you add additional stuff into your route values dictionary that aren't defined in your route, it'll add them as get parameters.

So if you do something like:

Url.Action("SearchResults", new { page = i, searchterm = "YourSearchTerm" })

It should spit out a route like SearchResults/Page2?searchterm=yousearchterm

HTHs,
Charles

share|improve this answer

Did you try this in the Html.PageLinks helper?

Url.Action("SearchResults", new { searchTerm = "your query", page = i })

Note the order of the parameters.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.