Skip to main content
Inspiring
May 7, 2013
Answered

How to Bookmark Search Results

  • May 7, 2013
  • 1 reply
  • 629 views

I know there must be an obvious answer, but I can't see it.

I have a search form that passes form variables.  Is there a way for the end-user to bookmark the results page since the variables are not in the url?

    This topic has been closed for replies.
    Correct answer duncancumming

    Not really.  Generally the best practice for any search form is to always use method="get" instead of method="post". This way the search results URL can be bookmarked, emailed, etc. 

    1 reply

    duncancummingCorrect answer
    Participating Frequently
    May 8, 2013

    Not really.  Generally the best practice for any search form is to always use method="get" instead of method="post". This way the search results URL can be bookmarked, emailed, etc. 

    Inspiring
    May 8, 2013

    I had no idea the difference in post and get.  Thank you!  It worked.

    I had always defaulted to method=post from CF6 days.