Tagged Questions

2
votes
4answers
331 views

How to change the URL displayed in the browser without leaving the page

Is it possible with JavaScript to change the browser's URL, but not leave the page?
1
vote
1answer
118 views

iOS UIWebView: How can I figure out what the previous URL is?

I'm rewriting the goBack function with my own because I need to be able to change the URL depending on whether the orientation changed or not. How can I access the URL history and figure out the ...
1
vote
2answers
1k views

Go back to the previous page on click of custom Back Button

I am using an image button and on click of it i want to go to visited page. Now i am using - Response.Redirect(Request.UrlReferrer.ToString()), It is going to previous page, but when i am in a page of ...
1
vote
3answers
994 views

Manipulate the session history with JavaScript

I need to delete the latest browser history entry for this reason, but any other functions exposed by JS that manipulate (add/remove) history entries for the current page/tab, are also welcome.
0
votes
1answer
183 views

IUrlHistoryStg2::ClearHistory() does not work from a service?

The IUrlHistoryStg2::ClearHistory() method is documented as Per-User. http://msdn.microsoft.com/en-us/library/aa767715(VS.85).aspx When calling it from a service running under the SYSTEM account, I ...
0
votes
0answers
377 views

Prevent URL being stored to browser history

I need to open a popup window to a url with certain parameters. The parameters contain information that I would like to prevent from showing up in the browser history. The url points to a 3rd party ...
0
votes
1answer
688 views

Test browser history before going back via javascript?

I'm playing around with using some javascript to add extra functionality to a back button on my website. Right now I have a set of javascript that looks like this: $(".back-link a").live("click", ...