Event banner
Microsoft Search, Ask Us Anything
Event Ended
Wednesday, Jul 27, 2022, 08:00 AM PDTEvent details
Microsoft Search is a leading intelligent search solution available with Microsoft 365 that consolidates islands of information transforming information into knowledge and answers. Through innovativ...
EmilyPerina
Updated Jul 27, 2022
MElkinsAW
Jul 27, 2022Brass Contributor
Also use search pages where queries are passed in via URL. Very handy for integration with things like GIS. We also create links where we use one page for the search, but different links pass different parameters. This is tough with the page caching as the page thinks it's already loaded. This is a very necessary feature for us.
- IvanWilsonAug 04, 2022Iron ContributorWe have added a random number as a querystring parameter to get around this caching issue. However, that assumes you have the ability to control the creation of the hyperlinks.
- MElkinsAWAug 04, 2022Brass ContributorThanks Ivan, can you provide more detail? We parameters in the query string (e.g., facility, asset name, etc.) but that doesn't get around the cache issue. There are times users need to hit the link twice to get it to load.
- IvanWilsonAug 04, 2022Iron ContributorFrom what I can remember, clicking the link triggered a JavaScript function that would generate a random number and add it to the querystring before redirecting to the destination. This article discusses the approach: https://css-tricks.com/strategies-for-cache-busting-css/