Tagged Questions
5
votes
3answers
464 views
How can I detect client-side when a page load is the result of an AJAX history point?
I'm trying to prevent a "flicker" effect that is occurring on my ASP.NET page which occurs when a user navigates to the page via the browser back button after having navigated away from it. The ...
2
votes
1answer
167 views
ASP MVC3 Ajax razor view, How to enable browser history?
I am working in ASP.NET MVC 3 application, I am using razor view. I have a main page which has 4 links. These links are used to render partial views into the main page. currently I am using ...
1
vote
1answer
406 views
asp.net ScriptManager EnableHistory=“true” InvalidOperationException
I manage ajax browser history using asp.net's(v. 4.0) EnableHistory="true" of the ScriptManager & everything has worked fine till today.
I fire my browser from localhost today and I get this error ...
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
2answers
456 views
ASPX: Redirect, remove QueryString but don't create history in browser
I'm looking for a way to get rid of the querystring of a page and redirect to itself but preserver the querystring data in some way.
Exmaple: "http://www.test.de/somepage.aspx?id=abc" should redirect ...
0
votes
1answer
22 views
ASP.NET Ajax History not working correctly
I have an ASP.NET/C# application.
The application containsa PlaceHolder inside an UpdatePanel.
<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional">
<Triggers>
...
0
votes
1answer
304 views
How can I fix my ASP.NET AJAX problem when I navigate away from the page and back?
I'm developing an ASP.NET 3.5 application which uses AJAX via the UpdatePanel control. I'm also using History Points to manage the browser back-button functionality. This all works fine until I want ...
0
votes
2answers
1k views
ASP.Net: Expiring a page when navigating back
Basically all pages on this site I am building cannot be accessed when the user clicks on "Back" (or with key control) in the browser, and the page should expire if one is trying to navigate back in ...
0
votes
6answers
278 views
Prevent user keeping browsing information from my website
I want to prevent my website from putting any information in the browser history of any user.
I am using asp .net to build my website. Any idea how can i perform this?
0
votes
1answer
323 views
Browser history cleared after navigating to a pdf via href
Ok, hopefully I have worded this in a way that you can understand. I'll start off by saying my website has a landing page of http://www.mywebsite.com/PageOne.aspx
On PageOne.aspx, I have a link to ...
0
votes
1answer
190 views
Can I use ASP.NET AJAX History without having .NET 3.5 SP1 installed?
Is it possible to use this feature on a server that only have .NET 2.0 installed? After an initial look into how AJAX history is implemented, I'm not sure it would be easy. I am just curious if anyone ...