/examples/CustomMapMoon/bin-release/srcview/source/html-template/history/historyFrame.html
HTML | 29 lines | 27 code | 2 blank | 0 comment | 0 complexity | 84f2c3f576395ed8ec964c9eadaa6e20 MD5 | raw file
- <html>
- <head>
- <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
- <META HTTP-EQUIV="Expires" CONTENT="-1">
- </head>
- <body>
- <script>
- function processUrl()
- {
-
- var pos = url.indexOf("?");
- url = pos != -1 ? url.substr(pos + 1) : "";
- if (!parent._ie_firstload) {
- parent.BrowserHistory.setBrowserURL(url);
- try {
- parent.BrowserHistory.browserURLChange(url);
- } catch(e) { }
- } else {
- parent._ie_firstload = false;
- }
- }
-
- var url = document.location.href;
- processUrl();
- document.write(url);
- </script>
- Hidden frame for Browser History support.
- </body>
- </html>