What is the best way to handle query strings in Edit View?
If you have a form, for example a search form, you will use GET in View Mode to keep the query strings in the address field. However in Edit View these parameters will be removed so a POST is used instead.
Now to my question: I have a page with some tabs, i.e. links to show and hide different parts of the page using query strings. These links are not inside any form so they will always use GET and the query string for selecting a tab is removed in Edit View. Is there any good way to handle this scenario?
What is the best way to handle query strings in Edit View?
If you have a form, for example a search form, you will use GET in View Mode to keep the query strings in the address field. However in Edit View these parameters will be removed so a POST is used instead.
Now to my question: I have a page with some tabs, i.e. links to show and hide different parts of the page using query strings. These links are not inside any form so they will always use GET and the query string for selecting a tab is removed in Edit View. Is there any good way to handle this scenario?